Skip to content

Commit d743b4d

Browse files
committed
Remove service health checks from mongo-express and flower in docker-compose
1 parent ccc8dab commit d743b4d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docker/docker-compose.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ services:
2424
image: mongo-express
2525
container_name: dev-mongo-express
2626
restart: no
27-
depends_on:
28-
dev-mongo:
29-
condition: service_healthy
27+
# depends_on:
28+
# dev-mongo:
29+
# condition: service_healthy
3030
ports:
3131
- '8081:8081'
3232
environment:
@@ -58,9 +58,9 @@ services:
5858
image: mher/flower
5959
container_name: dev-flower
6060
restart: no
61-
depends_on:
62-
dev-rabbitmq:
63-
condition: service_healthy
61+
# depends_on:
62+
# dev-rabbitmq:
63+
# condition: service_healthy
6464
command: celery --broker=amqp://${RABBITMQ_USERNAME}:${RABBITMQ_PASSWORD}@dev-rabbitmq:${RABBITMQ_PORT}/vhost flower --broker_api=http://${RABBITMQ_USERNAME}:${RABBITMQ_PASSWORD}@dev-rabbitmq:15672/api/vhost
6565
ports:
6666
- '5555:5555'

0 commit comments

Comments
 (0)