Stack & services
Start, stop, update, inspect, connect to, and follow logs from Compose services.
Lightweight Compose operations
Control stacks, inspect services, protect data, and deploy releases without installing a heavyweight management platform.
Python 3.10+ · Docker or Podman · Linux, macOS, Windows
$ compman status
Stack payments is healthy
api running
postgres running
$ compman volume backup
Backup created successfully
$ compman deploy --path release.zip
Deploy completed
For constrained environments
Dedicated to the brave souls managing everything with raw Docker commands because every other tool was somehow “not allowed.”
One focused tool
Start, stop, update, inspect, connect to, and follow logs from Compose services.
Back up and restore named volumes or container images with configurable gzip compression.
Get human-readable or JSON health reports with status and doctor.
Fetch an S3 prefix or archive, or a public HTTP archive, then optionally build and recreate.
Inject environment variables from AWS Secrets Manager instead of hardcoding secrets in compman.yml.
Quick start
Install compman as an isolated tool, create a starting configuration, and bring the project up.
Explore configuration →# Install from GitHub
uv tool install --force --managed-python git+https://github.com/allbegray/compman.git
# In your Compose project
compman init --scaffold
compman stack up
compman status
compman ps
compman stats -f
Command map
statusdoctorpsstats -fservice statusservice logstack upstack downstack updateservice connectvolume backupvolume restoreimage backupimage restoredeployupdateinitcompletionBring your own release source
S3 supports prefixes and archives. HTTP and HTTPS accept .tar.gz, .tgz, and .zip archives.
compman deploy --path \
s3://my-bucket/releases/app.tar.gz \
--build --tag my-appWorks with AWS S3 and endpoint-compatible services such as Ministack.
compman deploy --path \
https://example.com/releases/app.zip \
--build --tag my-appStreams the archive with standard TLS verification. Authenticated URLs are not yet supported.
FAQ
No. compman auto-detects Docker Compose, Podman Compose, legacy docker-compose, and podman-compose.
A project-local compman.yml describes the stack, Compose files, profiles, managed directories, and optional deploy source.
compman can inject environment variables from AWS Secrets Manager at command time, so secrets never need to live in compman.yml.
Archive extraction rejects absolute paths, traversal, and links. Managed-tree replacement rolls back if its file swap fails.
No. compman is an on-demand CLI that delegates container operations to the detected local runtime.