1
0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2026-04-12 17:29:32 +00:00

2 Commits

Author SHA1 Message Date
JimMoen
e282e3e207 Merge fb011f5d48 into 887a864aba 2026-04-06 19:38:56 -06:00
JimMoen
fb011f5d48 feat(docker): add docker volume rm alias 2023-06-29 15:10:15 +08:00
2 changed files with 2 additions and 0 deletions

View File

@@ -84,6 +84,7 @@ If you use Podman's Docker wrapper, you need to enable legacy completion. See ab
| dtop | `docker top` | Display the running processes of a container |
| dvi | `docker volume inspect` | Display detailed information about one or more volumes |
| dvls | `docker volume ls` | List all the volumes known to docker |
| dvrm | `docker volume rm` | Remove one or more volumes |
| dvprune | `docker volume prune` | Cleanup dangling volumes |
| dxc | `docker container exec` | Run a new command in a running container |
| dxcit | `docker container exec -it` | Run a new command in a running container in an interactive shell |

View File

@@ -35,6 +35,7 @@ alias dsts='docker stats'
alias dtop='docker top'
alias dvi='docker volume inspect'
alias dvls='docker volume ls'
alias dvrm='docker volume rm'
alias dvprune='docker volume prune'
alias dxc='docker container exec'
alias dxcit='docker container exec -it'