Docker Compose
plugin for Oh My Fish and Fisher, based loosely on the Oh My Zsh's Docker Compose Plugin
omf install https://github.com/Asim-Tahir/docker-compose.fish
fisher install Asim-Tahir/docker-compose.fish
After installing the docker-compose.fish
plugin, can inspect the abbreviations with the following command:
abbr --show | grep dcupdb
Note
For all abbreviations, if the docker compose
command is available, use docker compose
, otherwise use docker-compose
.
Abbreviation | Command |
---|---|
dcup |
docker compose up |
dcupb |
docker compose up --build |
dcupd |
docker compose up -d |
dcupdb |
docker compose up -d --build |
Abbreviation | Command |
---|---|
dcdn |
docker compose down |
Abbreviation | Command |
---|---|
dcl |
docker compose logs |
dclf |
docker compose logs -f |
dclF |
docker compose logs -f --tail 0 |
Abbreviation | Command |
---|---|
dcstart |
docker compose start |
dcstop |
docker compose stop |
dck |
docker compose kill |
dcrestart |
docker compose restart |
Abbreviation | Command |
---|---|
dce |
docker compose exec |
dcr |
docker compose run |
Abbreviation | Command |
---|---|
dco |
docker compose |
dcb |
docker compose build |
dcps |
docker compose ps |
dcrm |
docker compose rm |
dcpull |
docker compose pull |
Base structure heavily inspired from jhillyerd/plugin-git
. Thanks for the amazing plugin.