1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-11-23 22:30:07 +00:00

feat(docker): add new aliases

Co-authored-by: Kirsty Mullen <36440536+kirstymullen@users.noreply.github.com>
This commit is contained in:
baltic-tea 2023-08-24 17:44:19 +03:00 committed by baltic_tea
parent 4188b22aea
commit 130c9b17ed
2 changed files with 57 additions and 35 deletions

View file

@ -42,7 +42,7 @@ zstyle ':omz:plugins:docker' legacy-completion yes
## Aliases
| Alias | Command | Description |
| :------ | :---------------------------- | :--------------------------------------------------------------------------------------- |
| :------ | :------------------------------- | :--------------------------------------------------------------------------------------- |
| dbl | `docker build` | Build an image from a Dockerfile |
| dcin | `docker container inspect` | Display detailed information on one or more containers |
| dcls | `docker container ls` | List all the running docker containers |
@ -53,7 +53,9 @@ zstyle ':omz:plugins:docker' legacy-completion yes
| dipu | `docker image push` | Push an image or repository to a remote registry |
| dirm | `docker image rm` | Remove one or more images |
| dit | `docker image tag` | Add a name and tag to a particular image |
| dkil | `docker kill` | Kill one or more running containers |
| dlo | `docker container logs` | Fetch the logs of a docker container |
| dlof | `docker container logs --follow` | Fetch and follow the logs of a docker container |
| dnc | `docker network create` | Create a new network |
| dncn | `docker network connect` | Connect a container to a network |
| dndcn | `docker network disconnect` | Disconnect a container from a network |
@ -62,6 +64,8 @@ zstyle ':omz:plugins:docker' legacy-completion yes
| dnrm | `docker network rm` | Remove one or more networks |
| dpo | `docker container port` | List port mappings or a specific mapping for the container |
| dpu | `docker pull` | Pull an image or a repository from a registry |
| dpsh | `docker push` | Upload an image to a registry |
| dritrm | `docker container run --rm -it` | Create a new container, start it in an interactive shell and automatically remove it |
| dr | `docker container run` | Create a new container and start it using the specified command |
| drit | `docker container run -it` | Create a new container and start it in an interactive shell |
| drm | `docker container rm` | Remove the specified container(s) |
@ -69,10 +73,19 @@ zstyle ':omz:plugins:docker' legacy-completion yes
| dst | `docker container start` | Start one or more stopped containers |
| drs | `docker container restart` | Restart one or more containers |
| dsta | `docker stop $(docker ps -q)` | Stop all running containers |
| dstat | `docker container stats` | Display a live stream of containers resource usage statistics |
| dstp | `docker container stop` | Stop one or more running containers |
| 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 |
| dcprune | `docker container prune` | Cleanup dangling containers |
| diprune | `docker image prune` | Cleanup dangling images |
| 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 |
## Custom functions (pseudo-aliases)
| Name | Function | Description |
| :---- | :----------------------------------------- | :-------------------------------------------------------- |
| dxcsh | `dxcsh() { docker exec -it "$@" /bin/sh }` | Run a interactive shell inside a running docker container |

View file

@ -8,7 +8,9 @@ alias dils='docker image ls'
alias dipu='docker image push'
alias dirm='docker image rm'
alias dit='docker image tag'
alias dkil='docker kill'
alias dlo='docker container logs'
alias dlof='docker container logs --follow'
alias dnc='docker network create'
alias dncn='docker network connect'
alias dndcn='docker network disconnect'
@ -17,21 +19,28 @@ alias dnls='docker network ls'
alias dnrm='docker network rm'
alias dpo='docker container port'
alias dpu='docker pull'
alias dpsh='docker push'
alias dr='docker container run'
alias drit='docker container run -it'
alias dritrm='docker container run --rm -it'
alias drm='docker container rm'
alias 'drm!'='docker container rm -f'
alias dst='docker container start'
alias drs='docker container restart'
alias dsta='docker stop $(docker ps -q)'
alias dstat='docker container stats'
alias dstp='docker container stop'
alias dtop='docker top'
alias dvi='docker volume inspect'
alias dvls='docker volume ls'
alias dcprune="docker container prune"
alias diprune="docker image prune"
alias dvprune='docker volume prune'
alias dxc='docker container exec'
alias dxcit='docker container exec -it'
dxcsh() { docker exec -it "$@" /bin/sh }
if (( ! $+commands[docker] )); then
return
fi