Jan 1, 0001

# Install Execution CLI
$ curl -L "https://execution.sh/install.sh" | sh

# Example Compose file
$ cat docker-compose.yml
name: example
services:
  postgres:
    image: postgres:17.0
    ports:
      - 5432:5432
    volumes:
      - postgresql:/var/lib/postgresql/data
volumes:
  postgresql:
    name: postgresql
    external: true

# Deploy services
$ execli deploy