Skip to content
This repository was archived by the owner on Oct 13, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,34 @@ 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.

### Running container-compose

To run `container-compose` from the source code, first ensure you have [Rust](https://www.rust-lang.org/tools/install) installed.

1. Clone the repository:
```sh
git clone https://github.com/noghartt/container-compose.git
cd container-compose
```

2. Build the project:
```sh
cargo build --release
```

3. Run `container-compose` using Cargo:
```sh
cargo run -- <command> [options]
```
For example, to start services:
```sh
cargo run -- up
```

You can also run the compiled binary directly:
```sh
./target/release/container-compose <command> [options]
```

Replace `<command>` and `[options]` with the desired subcommand and arguments.