Conversation
83c82c8 to
3ad309f
Compare
When services define a network configuration the planner will wait until the networks have been created first before creating the container and connecting to the network. Change-type: minor
Ordering of results seems to be system dependent, so we sort entries before comparing.
72974ba to
68a1bb5
Compare
pipex
added a commit
that referenced
this pull request
Apr 16, 2026
Depends-on: #104 Change-type: patch
pipex
added a commit
that referenced
this pull request
Apr 16, 2026
Depends-on: #104 Change-type: patch
pipex
added a commit
that referenced
this pull request
Apr 17, 2026
Depends-on: #104 Change-type: patch
Only network_mode: `service:` is not supported as that requires depends_on Change-type: minor
Pulling multiple images with same name would result in a workflow not found. This because it would tell the planner to create an image that doesn't exist causing the plan operation to fail. This also makes sure that image comparison is standard accross tags. Change-type: patch
68a1bb5 to
b97cd06
Compare
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.
Per service network configuration can now be defined on the composition. All properties defined in the compose v2 spec are supported. The state engine via the planner makes sure the right sequence of operations is used when creating/removing networks and services
This also adds support for
network_mode(with the exception ofcontainer:andservice:)Change-type: minor