Skip to content

Commit

Permalink
fix: depends on must be a list
Browse files Browse the repository at this point in the history
  • Loading branch information
JoseAlbDR committed Feb 18, 2024
1 parent aacbe15 commit 38a3ef6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ services:
email-service:
image: jaderodev/email-service:latest
restart: on-failure
depends_on: aup-backend
depends_on:
- aup-backend
container_name: email-service
environment:
RABBITMQ_USER: ${RABBITMQ_USER}
Expand All @@ -50,7 +51,8 @@ services:
notification-service:
image: jaderodev/notification-service:latest
restart: on-failure
depends_on: aup-backend
depends_on:
- aup-backend
container_name: notification-service
environment:
RABBITMQ_USER: ${RABBITMQ_USER}
Expand Down

0 comments on commit 38a3ef6

Please sign in to comment.