Fix docker-compose.yml agent depends_on

This commit is contained in:
Nicolas Will
2024-06-17 13:16:24 +02:00
parent ef7552c43f
commit 95e42ae85a

View File

@@ -53,7 +53,6 @@ services:
volumes:
- ./dbstore-data:/data
qpstore:
image: minio/minio:RELEASE.2024-06-11T03-13-30Z
container_name: qpstore
@@ -68,7 +67,6 @@ services:
volumes:
- ./qpstore-data:/data
agent:
build:
context: .
@@ -76,7 +74,8 @@ services:
container_name: agent
depends_on:
- rabbitmq
- minio
- dbstore
- qpstore
environment:
MRVA_RABBITMQ_HOST: rabbitmq
MRVA_RABBITMQ_PORT: 5672
@@ -85,7 +84,6 @@ services:
networks:
- backend
networks:
backend:
driver: bridge
@@ -93,4 +91,3 @@ networks:
# Remove named volumes to use bind mounts
# volumes:
# minio-data: