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

Fix docker-compose service order #1537

Merged
merged 1 commit into from
Jan 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 7 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ services:
start_period: 5s
depends_on:
- dex-idp
- ct_server
read_only: true
dex-idp:
image: dexidp/dex:v2.30.0
Expand All @@ -73,6 +72,7 @@ services:
dockerfile: Dockerfile.ctfe_init
depends_on:
- trillian-log-server
- fulcio-server
volumes:
- ctfeConfig:/etc/config/:rw
ct_server:
Expand All @@ -87,9 +87,12 @@ services:
]
restart: always # retry while ctfe_init is running
depends_on:
- trillian-log-server
- trillian-log-signer
- ctfe_init
trillian-log-server:
condition: service_started
trillian-log-signer:
condition: service_started
ctfe_init:
condition: service_completed_successfully
ports:
- "6962:6962"
mysql:
Expand Down