Show HN: Container-compose – A Docker-compose like tool for Apple containers
41 Noghartt 11 6/15/2025, 2:53:40 PM github.com ↗
Hey HN, recently Apple release their own container manager tooling, but it's missing a "compose-like" tool.
I'm building this CLI as a side-project and a way to help on the usage with the main tool.
It's in a early version, then at the moment I'm trying to be as much as possible compatible with `docker-compose` config file, and in the current version we're supporting two commands: `up` and `down`.
> Any reason why don’t implement this as a plugin for the container CLI?
I did a different CLI because, considering that Apple released their v0.1.0, I'm not sure if they're working in some kind of official support for compose YAMLs.
With that in mind, I tried to avoid coupling it into the container CLI, to avoid injecting any kind of breaking change or something else which could cause any issue in the future.
On my current implementation, I didn't work with DNS/Network Resolution because I need to understand better what I can/can't do with the API Apple provides, so the only things it does is handling the port mapping using `socat`, as the docs recommends.