summaryrefslogtreecommitdiff
path: root/plugins/docker
diff options
context:
space:
mode:
authorMaxim Derbenev <maxim_ek@mail.ru>2022-06-06 18:37:42 +0500
committerGitHub <noreply@github.com>2022-06-06 15:37:42 +0200
commitd41ca84af1271e8bfbe26f581cebe3b86521d0db (patch)
treeefe2c26c00290940694c1e6ca9c639b3197f632a /plugins/docker
parent6622210d7d4afe859f11c5d50c177bd5e500f2c6 (diff)
downloadzsh-d41ca84af1271e8bfbe26f581cebe3b86521d0db.tar.gz
zsh-d41ca84af1271e8bfbe26f581cebe3b86521d0db.tar.bz2
zsh-d41ca84af1271e8bfbe26f581cebe3b86521d0db.zip
fix(docker): rename `dip` alias to `dipu` to avoid naming conflict (#10957)
Diffstat (limited to 'plugins/docker')
-rw-r--r--plugins/docker/README.md2
-rw-r--r--plugins/docker/docker.plugin.zsh2
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/docker/README.md b/plugins/docker/README.md
index 2b721c770..606690f14 100644
--- a/plugins/docker/README.md
+++ b/plugins/docker/README.md
@@ -57,7 +57,7 @@ the lines below to your zshrc file**, but be aware of the side effects:
| dib | `docker image build` | Build an image from a Dockerfile (same as docker build) |
| dii | `docker image inspect` | Display detailed information on one or more images |
| dils | `docker image ls` | List docker images |
-| dip | `docker image push` | Push an image or repository to a remote registry |
+| 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 |
| | | **Docker Network** |
diff --git a/plugins/docker/docker.plugin.zsh b/plugins/docker/docker.plugin.zsh
index 843c8e241..9c8ad8a28 100644
--- a/plugins/docker/docker.plugin.zsh
+++ b/plugins/docker/docker.plugin.zsh
@@ -21,7 +21,7 @@ alias dxcit='docker container exec -it'
alias dib='docker image build'
alias dii='docker image inspect'
alias dils='docker image ls'
-alias dip='docker image push'
+alias dipu='docker image push'
alias dirm='docker image rm'
alias dit='docker image tag'