mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-15 01:48:34 -07:00
chore(docker): sort and reorganize aliases
This commit is contained in:
parent
a4392cfc16
commit
1c06ea24fb
@ -13,18 +13,15 @@ https://github.com/docker/cli/blob/master/contrib/completion/zsh/_docker
|
|||||||
|
|
||||||
## Settings
|
## Settings
|
||||||
|
|
||||||
By default, the completion doesn't allow option-stacking, meaning if you try to
|
By default, the completion doesn't allow option-stacking, meaning if you try to complete
|
||||||
complete `docker run -it <TAB>` it won't work, because you're _stacking_ the
|
`docker run -it <TAB>` it won't work, because you're _stacking_ the `-i` and `-t` options.
|
||||||
`-i` and `-t` options.
|
|
||||||
|
|
||||||
[You can enable it](https://github.com/docker/cli/commit/b10fb43048) by **adding
|
[You can enable it](https://github.com/docker/cli/commit/b10fb43048) by **adding the lines below to your zshrc
|
||||||
the lines below to your zshrc file**, but be aware of the side effects:
|
file**, but be aware of the side effects:
|
||||||
|
|
||||||
> This enables Zsh to understand commands like `docker run -it
|
> This enables Zsh to understand commands like `docker run -it ubuntu`. However, by enabling this, this also
|
||||||
> ubuntu`. However, by enabling this, this also makes Zsh complete
|
> makes Zsh complete `docker run -u<tab>` with `docker run -uapprox` which is not valid. The users have to put
|
||||||
> `docker run -u<tab>` with `docker run -uapprox` which is not valid. The
|
> the space or the equal sign themselves before trying to complete.
|
||||||
> users have to put the space or the equal sign themselves before trying
|
|
||||||
> to complete.
|
|
||||||
>
|
>
|
||||||
> Therefore, this behavior is disabled by default. To enable it:
|
> Therefore, this behavior is disabled by default. To enable it:
|
||||||
>
|
>
|
||||||
@ -35,39 +32,36 @@ the lines below to your zshrc file**, but be aware of the side effects:
|
|||||||
|
|
||||||
## Aliases
|
## Aliases
|
||||||
|
|
||||||
| Alias | Command | Description |
|
| Alias | Command | Description |
|
||||||
| :------ | :-------------------------- | :--------------------------------------------------------------------------------------- |
|
| :------ | :---------------------------- | :--------------------------------------------------------------------------------------- |
|
||||||
| dbl | `docker build` | Build an image from a Dockerfile |
|
| dbl | `docker build` | Build an image from a Dockerfile |
|
||||||
| dcin | `docker container inspect` | Display detailed information on one or more containers |
|
| dcin | `docker container inspect` | Display detailed information on one or more containers |
|
||||||
| dlo | `docker container logs` | Fetch the logs of a docker container |
|
| dcls | `docker container ls` | List all the running docker containers |
|
||||||
| dcls | `docker container ls` | List all the running docker containers |
|
| dclsa | `docker container ls -a` | List all running and stopped containers |
|
||||||
| dclsa | `docker container ls -a` | List all running and stopped containers |
|
| dib | `docker image build` | Build an image from a Dockerfile (same as docker build) |
|
||||||
| dpo | `docker container port` | List port mappings or a specific mapping for the container |
|
| dii | `docker image inspect` | Display detailed information on one or more images |
|
||||||
| dpu | `docker pull` | Pull an image or a repository from a registry |
|
| dils | `docker image ls` | List docker images |
|
||||||
| dr | `docker container run` | Create a new container and start it using the specified command |
|
| dipu | `docker image push` | Push an image or repository to a remote registry |
|
||||||
| drit | `docker container run -it` | Create a new container and start it in an interactive shell |
|
| dirm | `docker image rm` | Remove one or more images |
|
||||||
| drm | `docker container rm` | Remove the specified container(s) |
|
| dit | `docker image tag` | Add a name and tag to a particular image |
|
||||||
| drm! | `docker container rm -f` | Force the removal of a running container (uses SIGKILL) |
|
| dlo | `docker container logs` | Fetch the logs of a docker container |
|
||||||
| dst | `docker container start` | Start one or more stopped containers |
|
| dnc | `docker network create` | Create a new network |
|
||||||
| dstp | `docker container stop` | Stop one or more running containers |
|
| dncn | `docker network connect` | Connect a container to a network |
|
||||||
| dtop | `docker top` | Display the running processes of a container |
|
| dndcn | `docker network disconnect` | Disconnect a container from a network |
|
||||||
| dxc | `docker container exec` | Run a new command in a running container |
|
| dni | `docker network inspect` | Return information about one or more networks |
|
||||||
| dxcit | `docker container exec -it` | Run a new command in a running container in an interactive shell |
|
| dnls | `docker network ls` | List all networks the engine daemon knows about, including those spanning multiple hosts |
|
||||||
| | | **Docker Images** |
|
| dnrm | `docker network rm` | Remove one or more networks |
|
||||||
| dib | `docker image build` | Build an image from a Dockerfile (same as docker build) |
|
| dpo | `docker container port` | List port mappings or a specific mapping for the container |
|
||||||
| dii | `docker image inspect` | Display detailed information on one or more images |
|
| dpu | `docker pull` | Pull an image or a repository from a registry |
|
||||||
| dils | `docker image ls` | List docker images |
|
| dr | `docker container run` | Create a new container and start it using the specified command |
|
||||||
| dipu | `docker image push` | Push an image or repository to a remote registry |
|
| drit | `docker container run -it` | Create a new container and start it in an interactive shell |
|
||||||
| dirm | `docker image rm` | Remove one or more images |
|
| drm | `docker container rm` | Remove the specified container(s) |
|
||||||
| dit | `docker image tag` | Add a name and tag to a particular image |
|
| drm! | `docker container rm -f` | Force the removal of a running container (uses SIGKILL) |
|
||||||
| | | **Docker Network** |
|
| dst | `docker container start` | Start one or more stopped containers |
|
||||||
| dnc | `docker network create` | Create a new network |
|
| dstp | `docker container stop` | Stop one or more running containers |
|
||||||
| dncn | `docker network connect` | Connect a container to a network |
|
| dtop | `docker top` | Display the running processes of a container |
|
||||||
| dndcn | `docker network disconnect` | Disconnect a container from a network |
|
| dvi | `docker volume inspect` | Display detailed information about one or more volumes |
|
||||||
| dni | `docker network inspect` | Return information about one or more networks |
|
| dvls | `docker volume ls` | List all the volumes known to docker |
|
||||||
| dnls | `docker network ls` | List all networks the engine daemon knows about, including those spanning multiple hosts |
|
| dvprune | `docker volume prune` | Cleanup dangling volumes |
|
||||||
| dnrm | `docker network rm` | Remove one or more networks |
|
| dxc | `docker container exec` | Run a new command in a running container |
|
||||||
| | | **Docker Volume** |
|
| dxcit | `docker container exec -it` | Run a new command in a running container in an interactive shell |
|
||||||
| dvi | `docker volume inspect` | Display detailed information about one or more volumes |
|
|
||||||
| dvls | `docker volume ls` | List all the volumes known to docker |
|
|
||||||
| dvprune | `docker volume prune` | Cleanup dangling volumes |
|
|
||||||
|
@ -1,39 +1,31 @@
|
|||||||
alias dbl='docker build'
|
alias dbl='docker build'
|
||||||
alias dpu='docker pull'
|
|
||||||
alias dtop='docker top'
|
|
||||||
|
|
||||||
# docker containers
|
|
||||||
alias dcin='docker container inspect'
|
alias dcin='docker container inspect'
|
||||||
alias dlo='docker container logs'
|
|
||||||
alias dcls='docker container ls'
|
alias dcls='docker container ls'
|
||||||
alias dclsa='docker container ls -a'
|
alias dclsa='docker container ls -a'
|
||||||
alias dpo='docker container port'
|
|
||||||
alias dr='docker container run'
|
|
||||||
alias drit='docker container run -it'
|
|
||||||
alias drm='docker container rm'
|
|
||||||
alias 'drm!'='docker container rm -f'
|
|
||||||
alias dst='docker container start'
|
|
||||||
alias dstp='docker container stop'
|
|
||||||
alias dxc='docker container exec'
|
|
||||||
alias dxcit='docker container exec -it'
|
|
||||||
|
|
||||||
# docker images
|
|
||||||
alias dib='docker image build'
|
alias dib='docker image build'
|
||||||
alias dii='docker image inspect'
|
alias dii='docker image inspect'
|
||||||
alias dils='docker image ls'
|
alias dils='docker image ls'
|
||||||
alias dipu='docker image push'
|
alias dipu='docker image push'
|
||||||
alias dirm='docker image rm'
|
alias dirm='docker image rm'
|
||||||
alias dit='docker image tag'
|
alias dit='docker image tag'
|
||||||
|
alias dlo='docker container logs'
|
||||||
# docker network
|
|
||||||
alias dnc='docker network create'
|
alias dnc='docker network create'
|
||||||
alias dncn='docker network connect'
|
alias dncn='docker network connect'
|
||||||
alias dndcn='docker network disconnect'
|
alias dndcn='docker network disconnect'
|
||||||
alias dni='docker network inspect'
|
alias dni='docker network inspect'
|
||||||
alias dnls='docker network ls'
|
alias dnls='docker network ls'
|
||||||
alias dnrm='docker network rm'
|
alias dnrm='docker network rm'
|
||||||
|
alias dpo='docker container port'
|
||||||
# docker volume
|
alias dpu='docker pull'
|
||||||
|
alias dr='docker container run'
|
||||||
|
alias drit='docker container run -it'
|
||||||
|
alias drm='docker container rm'
|
||||||
|
alias 'drm!'='docker container rm -f'
|
||||||
|
alias dst='docker container start'
|
||||||
|
alias dstp='docker container stop'
|
||||||
|
alias dtop='docker top'
|
||||||
alias dvi='docker volume inspect'
|
alias dvi='docker volume inspect'
|
||||||
alias dvls='docker volume ls'
|
alias dvls='docker volume ls'
|
||||||
alias dvprune='docker volume prune'
|
alias dvprune='docker volume prune'
|
||||||
|
alias dxc='docker container exec'
|
||||||
|
alias dxcit='docker container exec -it'
|
||||||
|
Loading…
Reference in New Issue
Block a user