Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(docker): Allow dotcom-1 and dotcom-2 start in parallel in docker compose #2188

Merged
merged 2 commits into from
Oct 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions deploy/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ services:
nginx:
image: nginx:stable-alpine3.17-slim
depends_on:
dotcom-1:
condition: service_healthy
dotcom-2:
condition: service_healthy
volumes:
Expand Down Expand Up @@ -62,8 +64,8 @@ services:
context: ../
dockerfile: ./deploy/dotcom/dev/Dockerfile
depends_on:
dotcom-1:
condition: service_healthy
redis-cluster-init:
condition: service_started
env_file:
- ../.env
environment:
Expand Down
Loading