| Crates.io | container-compose |
| lib.rs | container-compose |
| version | 0.0.1-alpha.5 |
| created_at | 2025-06-16 21:10:32.959155+00 |
| updated_at | 2025-06-19 17:47:49.393285+00 |
| description | A docker-compose like tool for Apple Containers |
| homepage | https://github.com/noghartt/container-compose |
| repository | https://github.com/noghartt/container-compose |
| max_upload_size | |
| id | 1714802 |
| size | 42,102 |
A CLI to let you use the Apple container like a docker-compose
config file.
[!WARNING] This tool is on "alpha" mode, which means that you can find a lot of bugs or missing features. If you find anything, feel free to open an issue. Thank you! :)
brew tap noghartt/container-compose https://github.com/noghartt/container-compose.git
brew install noghartt/container-compose/container-compose
cargo install container-compose
We have made a .tar.gz containing the binary available on the release page.
If you prefer to have your binary from there.
To run container-compose from the source code, first ensure you have Rust installed.
Clone the repository:
git clone https://github.com/noghartt/container-compose.git
cd container-compose
Build the project:
cargo build --release
Run container-compose using Cargo:
cargo run -- <command> [options]
For example, to start services:
cargo run -- up
You can also run the compiled binary directly:
./target/release/container-compose <command> [options]
Replace <command> and [options] with the desired subcommand and arguments.