ohmyzsh/plugins/docker-compose
Marc Cornellà 88e72e8a54 fix(docker-compose)!: check for old command instead of calling docker (#10409)
BREAKING CHANGE: the plugin now checks for the `docker-compose` command instead
of trying whether `docker compose` is a valid command. This means that if the
old command is still installed it will be used instead. To use `docker compose`,
uninstall any old copies of `docker-compose`.

Fixes #10409
2021-11-17 11:05:25 +01:00
..
_docker-compose
docker-compose.plugin.zsh fix(docker-compose)!: check for old command instead of calling docker (#10409) 2021-11-17 11:05:25 +01:00
README.md

Docker-compose

This plugin provides completion for docker-compose as well as some aliases for frequent docker-compose commands.

To use it, add docker-compose to the plugins array of your zshrc file:

plugins=(... docker-compose)

Aliases

Alias Command Description
dco docker-compose Docker-compose main command
dcb docker-compose build Build containers
dce docker-compose exec Execute command inside a container
dcps docker-compose ps List containers
dcrestart docker-compose restart Restart container
dcrm docker-compose rm Remove container
dcr docker-compose run Run a command in container
dcstop docker-compose stop Stop a container
dcup docker-compose up Build, (re)create, start, and attach to containers for a service
dcupb docker-compose up --build Same as dcup, but build images before starting containers
dcupd docker-compose up -d Same as dcup, but starts as daemon
dcdn docker-compose down Stop and remove containers
dcl docker-compose logs Show logs of container
dclf docker-compose logs -f Show logs and follow output
dcpull docker-compose pull Pull image of a service
dcstart docker-compose start Start a container
dck docker-compose kill Kills containers