Skip to main content

A smart CLI wrapper for docker compose with interactive selection support.

Project description

Compose Lazy

๐Ÿš€ A smart docker compose wrapper โ€” interactive selection ร— multi-repository workspace management

Overview

A CLI tool designed to streamline workflows for developers who frequently use docker compose.
In addition to short aliases for common commands, it features interactive selection of compose files, profiles, and services, and a workspace system that lets you operate any registered repository from anywhere in the filesystem โ€” no cd required.
Available on PyPI โ€” install instantly with pipx install compose-lazy or uv tool install compose-lazy.

ๆ—ฅๆœฌ่ชž็‰ˆREADMEใ‚‚ใ‚ใ‚Šใพใ™ใ€‚

Highlights

Basic Commands

Installing compose-lazy adds three commands to your PATH automatically.

Command Description
dcpu Alias for docker compose up
dcpe Alias for docker compose exec
dcp Alias for other subcommands (build, logs, stop, etc.)

Each command supports multiple options. See the List of Commands for details.

Multi-Repo Workspace

Register named groups of repositories as a workspace and operate all of them at once โ€” from any directory, without cd.

Once registered, compose-lazy remembers each repository's path and compose files. You can launch, exec into, or check the status of any container regardless of where you currently are in the filesystem.

# Register a repository with specific compose files
$ dcp ws register
Please enter a new directory path: /path/to/repo
โ˜‘ Found 2 docker-compose files!
    1. docker-compose.yml
    2. docker-compose.prod.yml
Enter your choices (e.g., 1,3,4) or 'q' to quit: 1

โ˜‘ Found 1 registered workspace!
    1. myproject
Or '0' for a new entry.
Enter your choice or 'q' to quit: 0
Please enter a new workspace name: myproject

โ˜‘ Registered new path to myproject: /path/to/repo (docker-compose.yml)

# Launch all repos in a workspace with their registered compose files
$ dcp ws up
โ˜‘ Found 1 registered workspace!
    1. myproject
Enter your choice or 'q' to quit: 1

โ”€โ”€โ”€โ”€โ”€ ๐Ÿ“‚ myproject โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
โ–ท Executing `docker compose -f docker-compose.yml up -d` in MYPROJECT.

# Exec into a service in a selected repo interactively
$ dcp ws exec
โ˜‘ Found 2 repositories!
    1. /path/to/repo-a
    2. /path/to/repo-b
Enter your choice or 'q' to quit: 1

โ˜‘ Found 2 services!
    1. app
    2. db
Enter your choice or 'q' to quit: 1
Please enter the rest of `docker compose exec app ...`: bash
โ–ท Executing `docker compose -f docker-compose.yml exec app bash` in REPO-A.

Workspace configuration is stored in ~/.config/compose-lazy.

Interactive Selection

Running -f, -pf, or -s without arguments auto-detects compose files, profiles, and services, letting you choose interactively.

$ dcpu -f
โ˜‘ Found 2 compose files!
    1. docker-compose.yml
    2. docker-compose.prod.yml
Enter your choices (e.g., 1,3,4) or 'q' to quit: 2
โ–ท Executing `docker compose -f docker-compose.prod.yml up`.

$ dcp re -pf   # `re`start
โ˜‘ Found 2 profiles!
    1. dev
    2. prod
Enter your choices (e.g., 1,3,4) or 'q' to quit: 1
โ–ท Executing `docker compose --profile dev restart`.

$ dcp l -s   # `l`ogs
โ˜‘ Found 3 services!
    1. app
    2. db
    3. frontend
Enter your choices (e.g., 1,3,4) or 'q' to quit: 1,2
โ–ท Executing `docker compose logs app db`.

For exec/run, interactive selection starts automatically when no service name is given.

$ dcpe   # `e`xec
โ˜‘ Found 3 services!
    1. app
    2. db
    3. frontend
Enter your choice or 'q' to quit: 1
โ–ท Executing `docker compose exec app bash`.

๐Ÿ”ง Install compose-lazy

Quick Install

# Using pipx
pipx install compose-lazy
# OR using uv
uv tool install compose-lazy

Not familiar with Python tooling?

If you don't have pipx or uv installed yet:

Windows
python -m pip install --user pipx
python -m pipx ensurepath
# Restart terminal, then:
pipx install compose-lazy
macOS
brew install pipx
pipx ensurepath
pipx install compose-lazy
Linux (Ubuntu/Debian)
pip install pipx
pipx ensurepath
pipx install compose-lazy

Features

  • Interactive Selection: auto-detect and interactively select compose files, profiles, and services
  • Multi-Repo Workspace: run docker compose commands across multiple repositories at once with dcp ws
  • Location-Independent: operate any registered repository from anywhere โ€” no need to cd into the project directory
  • Short Aliases: dcp u, dcp b, dcp e โ€” fewer keystrokes for common commands
  • Dedicated Commands: dcpu and dcpe for frequent up/exec workflows
  • Cross-Platform: Works on Windows, macOS, and Linux

FAQ

Why use pipx or uv tool instead of pip?

Both pipx and uv tool install CLI tools in isolated environments, so compose-lazy won't conflict with other Python packages. The commands (dcp, dcpu, dcpe) are available globally without activating a virtual environment. uv tool is the faster alternative if you already use uv.

Requirements

  • Python 3.11+
  • Docker with Compose V2 (docker compose โ€” not docker-compose)
  • A docker-compose.yml (or *compose*.yml/yaml) in the current directory for interactive selection features

List of Commands

Common options (available for all commands): -s, -f FILE..., -pf PROFILE..., -p PROJECT

โš ๏ธ Note: -f, -pf, -p are passed before the subcommand in the actual docker compose syntax,
but in compose-lazy they are specified after the subcommand (e.g. dcp up -f FILE).

Bash Command Executed Docker Command
dcp - (Show help)
dcpu [SERVICE...] [-d] [-b] [-w] docker compose up [SERVICE...]
dcpe [SERVICE] docker compose exec SERVICE bash
dcpe [SERVICE] [COMMANDS...] docker compose exec SERVICE [COMMANDS...]
dcp up(u) [SERVICE...] docker compose up [SERVICE...]
dcp up(u) -d docker compose up -d
dcp up(u) -b docker compose up --build
dcp up(u) -w docker compose up --wait
dcp build(b) [SERVICE...] docker compose build [SERVICE...]
dcp exec(e) [SERVICE] docker compose exec SERVICE bash
dcp exec(e) [SERVICE] [COMMANDS...] docker compose exec SERVICE [COMMANDS...]
dcp run [SERVICE] docker compose run SERVICE bash
dcp restart(re) [SERVICE...] docker compose restart [SERVICE...]
dcp ps [SERVICE...] [-a] [-st STATUS] docker compose ps [SERVICE...] [--all] [--status ...]
dcp logs(l) [SERVICE...] [-fo] docker compose logs [SERVICE...] [-f]
dcp stop(s) [SERVICE...] docker compose stop [SERVICE...]
dcp down [-ro] docker compose down [--remove-orphans]
dcp workspace(ws) register(reg) Register a new repo to a workspace interactively
dcp workspace(ws) delete(del) Delete a repo from a workspace interactively
dcp workspace(ws) list(li) List all registered workspaces
dcp workspace(ws) up(u) docker compose up -d for each repo in a workspace
dcp workspace(ws) build(b) docker compose build for each repo in a workspace
dcp workspace(ws) exec(e) docker compose exec interactively for a selected repo
dcp workspace(ws) restart(re) docker compose restart for each repo in a workspace
dcp workspace(ws) ps docker compose ps for each repo in a workspace
dcp workspace(ws) stop(s) docker compose stop for each repo in a workspace
dcp workspace(ws) down docker compose down for each repo in a workspace

and more... see dcp --help for the full list of supported commands and options.

License

MIT LICENSE

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

compose_lazy-0.9.0.tar.gz (30.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

compose_lazy-0.9.0-py3-none-any.whl (19.3 kB view details)

Uploaded Python 3

File details

Details for the file compose_lazy-0.9.0.tar.gz.

File metadata

  • Download URL: compose_lazy-0.9.0.tar.gz
  • Upload date:
  • Size: 30.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for compose_lazy-0.9.0.tar.gz
Algorithm Hash digest
SHA256 4d40ec52f757b60957160a0bb04a1a7f49b6228607fb85b34a42ad153d373c48
MD5 5a9561bb5390d34dee67542dbb948156
BLAKE2b-256 a1657b536cb2c9b2d25f1c682f8383a1d1334166cec4c29cb5841dfc796bf965

See more details on using hashes here.

File details

Details for the file compose_lazy-0.9.0-py3-none-any.whl.

File metadata

  • Download URL: compose_lazy-0.9.0-py3-none-any.whl
  • Upload date:
  • Size: 19.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for compose_lazy-0.9.0-py3-none-any.whl
Algorithm Hash digest
SHA256 34b9fed4e5168efcbac9526161a52de6c47aa7329a5eaf12d41ff3592df42783
MD5 2362900e1cfe061c1d0c9f32cc1531a6
BLAKE2b-256 2dee05160026f0bfdbe33a84f46b602a601d2f8aa87470da8211facbbfdffef6

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page