Open
Conversation
Drawn from Mcrich23#65 conversation.
Mcrich23
requested changes
Mar 18, 2026
Owner
Mcrich23
left a comment
There was a problem hiding this comment.
I love this PR a lot. I think it's definitely a step in the right direction of adding/updating documentation.
Let's get this merged soon!
| # Container-Compose | ||
|
|
||
| Container-Compose brings (limited) Docker Compose support to [Apple Container](https://github.com/apple/container), allowing you to define and orchestrate multi-container applications on Apple platforms using familiar Compose files. This project is not a Docker or Docker Compose wrapper but a tool to bridge Compose workflows with Apple's container management ecosystem. | ||
| **Container-Compose is a (mostly) drop-in replacement for `docker-compose` that orchestrates [Apple Containers](https://opensource.apple.com/projects/container/) using the [`container`](https://github.com/apple/container) command.** It brings (currently limited) Docker Compose support, allowing you to define and orchestrate multi-container applications on Apple platforms using familiar compose files. This project aims to bridge Compose workflows with Apple's container management ecosystem. _It is not a Docker or Docker Compose wrapper._ |
Owner
There was a problem hiding this comment.
One interesting thing to note is that it does not wrap around the command executable itself but rather links in the commands as a shared library. I don't know if we want to make that distinction here but it's something to consider.
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.
Currently,
container-composehas a hard-coded "docker-compose.yml" string in a notice it emits. This is confusing when your file isn't named that, to humans and bots like Claude.This pull request has five commits:
docker-compose.ymland "Docker Compose" from comments and other strings where it's more proper to talk about compose files instead.container-composedoes not like Docker Compose-style environment config #65README.mdas well asCONTRIBUTING.mdto boost up the idea of adding tests, which many PRs seem to forget.NOTE: While Claude was used to help me understand how to do some things in Swift, all code here passed directly through my fingers.