wip: update passing Queue to Commander

- Add minio to docker-compose
     - Fix use of server.NewCommanderSingle
This commit is contained in:
Michael Hohn
2024-06-11 13:19:05 -07:00
committed by =Michael Hohn
parent 7e0d6909da
commit fc29fc5653
5 changed files with 30 additions and 17 deletions

View File

@@ -47,10 +47,28 @@ services:
networks:
- backend
minio:
image: minio/minio:RELEASE.2024-06-11T03-13-30Z
container_name: minio
ports:
- "9000:9000"
- "9001:9001"
environment:
MINIO_ROOT_USER: user
MINIO_ROOT_PASSWORD: musty-coke
command: server /data --console-address ":9001"
volumes:
- minio-data:/data
volumes:
minio-data:
postgres_data:
driver: local
networks:
backend:
driver: bridge
volumes:
postgres_data:
driver: local