Skip to content

container-compose/cli

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Container Compose CLI

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:

container system start

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

About

A wrapper around Apple's Container framework that looks and feels like docker compose

Topics

Resources

Stars

Watchers

Forks

Languages