mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-07-24 05:57:47 +02:00
sorting :)
This commit is contained in:
parent
45b97508e5
commit
b2b5b47245
2 changed files with 2 additions and 2 deletions
|
|
@ -16,8 +16,8 @@ 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 |
|
||||
| dcc | `docker-compose config` | Parse, resolve and render compose file in canonical format |
|
||||
| dce | `docker-compose exec` | Execute command inside a container |
|
||||
| dcps | `docker-compose ps` | List containers |
|
||||
| dcrestart | `docker-compose restart` | Restart container |
|
||||
|
|
|
|||
|
|
@ -5,8 +5,8 @@
|
|||
[[ -x "${commands[docker-compose]:A}" ]] && dccmd='docker-compose' || dccmd='docker compose'
|
||||
|
||||
alias dco="$dccmd"
|
||||
alias dcc="$dccmd config"
|
||||
alias dcb="$dccmd build"
|
||||
alias dcc="$dccmd config"
|
||||
alias dce="$dccmd exec"
|
||||
alias dcps="$dccmd ps"
|
||||
alias dcrestart="$dccmd restart"
|
||||
|
|
|
|||
Loading…
Reference in a new issue