From 45b97508e53f33445aace0ee74af2937df6707c2 Mon Sep 17 00:00:00 2001 From: Fernando Silva Date: Mon, 6 Jul 2026 12:13:02 +1200 Subject: [PATCH] updated readme --- plugins/docker-compose/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/docker-compose/README.md b/plugins/docker-compose/README.md index 5a0290462..8211a6487 100644 --- a/plugins/docker-compose/README.md +++ b/plugins/docker-compose/README.md @@ -2,7 +2,7 @@ This plugin provides completion for [docker-compose](https://docs.docker.com/compose/) as well as some aliases for frequent docker-compose commands. -This plugin chooses automatically between the legacy `docker-compose` command and the modern +This plugin chooses automatically between the legacy `docker-compose` command and the modern `docker compose` subcommand, preferring `docker-compose` when both are available. To use it, add docker-compose to the plugins array of your zshrc file: @@ -16,6 +16,7 @@ plugins=(... docker-compose) | Alias | Command | Description | |-----------|----------------------------------|----------------------------------------------------------------------------------| | dco | `docker-compose` | Docker-compose main command | +| dcc | `docker-compose config` | Parse, resolve and render compose file in canonical format | | dcb | `docker-compose build` | Build containers | | dce | `docker-compose exec` | Execute command inside a container | | dcps | `docker-compose ps` | List containers |