This project provides developer ergonomics to start using Apple's Container. Inspired by Docker Compose, this CLI offers a similar experience for managing containerised applications - without the need for Docker Desktop.
Installation
Download and install Container from the release page.
Install this CLI:
go install github.com/container-compose/cli@latest
Building from source
go build -o container-compose main.go ./container-compose -h
Usage
Make sure that you have started the container system:
Write your first compose spec:
version: "0.1" services: web: image: nginx:latest ports: - "8080:80"
container-compose start
container-compose start -f compose.yaml