Guides: compose dependencies / long-option#3611
Merged
snazy merged 1 commit intoapache:mainfrom Jan 31, 2026
Merged
Conversation
Docker compose's "short" `depends_on` syntax (just mentioning the dependent service) does not assert on the expected condition (`service_healthy` or `service_completed_successfully`). This can lead to services being started too early, although their dependencies are not in the expected state. This change updates the affected parts to use the "long" syntax.
e49fa5a to
79b13e1
Compare
MonkeyCanCode
approved these changes
Jan 29, 2026
| polaris: | ||
| condition: service_healthy | ||
| polaris-setup: | ||
| condition: service_completed_successfully |
Contributor
There was a problem hiding this comment.
As we are changing to tail forever on the other PR, we will need to change this to service_healthy instead.
Member
Author
There was a problem hiding this comment.
Good point!
I'll adjust the other PR.
Member
Author
There was a problem hiding this comment.
Actually, it's not strictly needed in the other PR for the telemetry guide, but I've added it for consistency across the guides.
dimas-b
approved these changes
Jan 31, 2026
sungwy
pushed a commit
to sungwy/polaris
that referenced
this pull request
Feb 7, 2026
Docker compose's "short" `depends_on` syntax (just mentioning the dependent service) does not assert on the expected condition (`service_healthy` or `service_completed_successfully`). This can lead to services being started too early, although their dependencies are not in the expected state. This change updates the affected parts to use the "long" syntax.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Docker compose's "short"
depends_onsyntax (just mentioning the dependent service) does not assert on the expected condition (service_healthyorservice_completed_successfully). This can lead to services being started too early, although their dependencies are not in the expected state.This change updates the affected parts to use the "long" syntax.