From 130c9b17edc61a00d695b050f9b558932b841355 Mon Sep 17 00:00:00 2001 From: baltic-tea <97766478+baltic-tea@users.noreply.github.com> Date: Thu, 24 Aug 2023 17:44:19 +0300 Subject: [PATCH 1/8] feat(docker): add new aliases Co-authored-by: Kirsty Mullen <36440536+kirstymullen@users.noreply.github.com> --- plugins/docker/README.md | 83 ++++++++++++++++++-------------- plugins/docker/docker.plugin.zsh | 9 ++++ 2 files changed, 57 insertions(+), 35 deletions(-) diff --git a/plugins/docker/README.md b/plugins/docker/README.md index 0ab2e41fb..0b85d7d8a 100644 --- a/plugins/docker/README.md +++ b/plugins/docker/README.md @@ -41,38 +41,51 @@ 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 | -| 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) | -| dii | `docker image inspect` | Display detailed information on one or more images | -| dils | `docker image ls` | List docker images | -| 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 | -| dlo | `docker container logs` | Fetch 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 | -| dni | `docker network inspect` | Return information about one or more networks | -| dnls | `docker network ls` | List all networks the engine daemon knows about, including those spanning multiple hosts | -| 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 | -| 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) | -| drm! | `docker container rm -f` | Force the removal of a running container (uses SIGKILL) | -| 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 | -| 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 | -| 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 | +| 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 | +| 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) | +| dii | `docker image inspect` | Display detailed information on one or more images | +| dils | `docker image ls` | List docker images | +| 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 | +| dni | `docker network inspect` | Return information about one or more networks | +| dnls | `docker network ls` | List all networks the engine daemon knows about, including those spanning multiple hosts | +| 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) | +| drm! | `docker container rm -f` | Force the removal of a running container (uses SIGKILL) | +| 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 | diff --git a/plugins/docker/docker.plugin.zsh b/plugins/docker/docker.plugin.zsh index 7e657f2df..4a1c13f0d 100644 --- a/plugins/docker/docker.plugin.zsh +++ b/plugins/docker/docker.plugin.zsh @@ -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 From 59db640492be0d8276b7e971e74bedb83aff1feb Mon Sep 17 00:00:00 2001 From: baltic-tea <97766478+baltic-tea@users.noreply.github.com> Date: Thu, 24 Aug 2023 20:24:44 +0300 Subject: [PATCH 2/8] feat(docker): add new aliases --- plugins/docker/docker.plugin.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/docker/docker.plugin.zsh b/plugins/docker/docker.plugin.zsh index 4a1c13f0d..a9c2db394 100644 --- a/plugins/docker/docker.plugin.zsh +++ b/plugins/docker/docker.plugin.zsh @@ -33,8 +33,8 @@ 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 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' From 6ee683b7c6a4f3581c0460bda3c39fe2a186bf9f Mon Sep 17 00:00:00 2001 From: JimMoen Date: Thu, 29 Jun 2023 15:10:15 +0800 Subject: [PATCH 3/8] feat(docker): add `docker volume rm` alias (cherry picked from commit fb011f5d48d0bfbbd268a16d5f08a20c103098a3) --- plugins/docker/README.md | 84 ++++++++++++++------------------ plugins/docker/docker.plugin.zsh | 1 + 2 files changed, 37 insertions(+), 48 deletions(-) diff --git a/plugins/docker/README.md b/plugins/docker/README.md index 0b85d7d8a..25a5adb7c 100644 --- a/plugins/docker/README.md +++ b/plugins/docker/README.md @@ -41,51 +41,39 @@ 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 | -| 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) | -| dii | `docker image inspect` | Display detailed information on one or more images | -| dils | `docker image ls` | List docker images | -| 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 | -| dni | `docker network inspect` | Return information about one or more networks | -| dnls | `docker network ls` | List all networks the engine daemon knows about, including those spanning multiple hosts | -| 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) | -| drm! | `docker container rm -f` | Force the removal of a running container (uses SIGKILL) | -| 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 | +| 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 | +| 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) | +| dii | `docker image inspect` | Display detailed information on one or more images | +| dils | `docker image ls` | List docker images | +| 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 | +| dlo | `docker container logs` | Fetch 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 | +| dni | `docker network inspect` | Return information about one or more networks | +| dnls | `docker network ls` | List all networks the engine daemon knows about, including those spanning multiple hosts | +| 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 | +| 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) | +| drm! | `docker container rm -f` | Force the removal of a running container (uses SIGKILL) | +| 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 | +| 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 | +| 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 | diff --git a/plugins/docker/docker.plugin.zsh b/plugins/docker/docker.plugin.zsh index a9c2db394..37bb07685 100644 --- a/plugins/docker/docker.plugin.zsh +++ b/plugins/docker/docker.plugin.zsh @@ -35,6 +35,7 @@ alias dvi='docker volume inspect' alias dvls='docker volume ls' alias dcprune='docker container prune' alias diprune='docker image prune' +alias dvrm='docker volume rm' alias dvprune='docker volume prune' alias dxc='docker container exec' alias dxcit='docker container exec -it' From 4de8d5d4a3847b1f19bcc8402df964901bbbaff9 Mon Sep 17 00:00:00 2001 From: baltic_tea Date: Tue, 27 Feb 2024 12:03:57 +0300 Subject: [PATCH 4/8] fix(README): fix aliases documentation --- plugins/docker/README.md | 85 +++++++++++++++++++++++----------------- 1 file changed, 49 insertions(+), 36 deletions(-) diff --git a/plugins/docker/README.md b/plugins/docker/README.md index 25a5adb7c..10a5d6cdf 100644 --- a/plugins/docker/README.md +++ b/plugins/docker/README.md @@ -41,39 +41,52 @@ 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 | -| 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) | -| dii | `docker image inspect` | Display detailed information on one or more images | -| dils | `docker image ls` | List docker images | -| 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 | -| dlo | `docker container logs` | Fetch 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 | -| dni | `docker network inspect` | Return information about one or more networks | -| dnls | `docker network ls` | List all networks the engine daemon knows about, including those spanning multiple hosts | -| 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 | -| 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) | -| drm! | `docker container rm -f` | Force the removal of a running container (uses SIGKILL) | -| 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 | -| 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 | -| 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 | +| 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 | +| 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) | +| dii | `docker image inspect` | Display detailed information on one or more images | +| dils | `docker image ls` | List docker images | +| 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 | +| dni | `docker network inspect` | Return information about one or more networks | +| dnls | `docker network ls` | List all networks the engine daemon knows about, including those spanning multiple hosts | +| 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) | +| drm! | `docker container rm -f` | Force the removal of a running container (uses SIGKILL) | +| 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 | +| dvrm | `docker volume rm` | Remove one or more volumes | +| 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 | From ae008c0a641e5cc703dc10aa677d78364e6a91bc Mon Sep 17 00:00:00 2001 From: Arsenii Liubogashchinskii Date: Sat, 4 May 2024 22:17:39 +0800 Subject: [PATCH 5/8] add `dxcbash` custom function --- plugins/docker/README.md | 7 ++++--- plugins/docker/docker.plugin.zsh | 1 + 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/plugins/docker/README.md b/plugins/docker/README.md index 10a5d6cdf..2e7ab4e96 100644 --- a/plugins/docker/README.md +++ b/plugins/docker/README.md @@ -87,6 +87,7 @@ zstyle ':omz:plugins:docker' legacy-completion yes ## Custom functions (pseudo-aliases) -| Name | Function | Description | -| :---- | :----------------------------------------- | :-------------------------------------------------------- | -| dxcsh | `dxcsh() { docker exec -it "$@" /bin/sh }` | Run a interactive shell inside a running docker container | +| Name | Function | Description | +| :------ | :--------------------------------------------- | :-------------------------------------------------------- | +| dxcsh | `dxcsh() { docker exec -it "$@" /bin/sh }` | Run a interactive shell inside a running docker container | +| dxcbash | `dxcbash() { docker exec -it "$@" /bin/bash }` | Run a interactive bash inside a running docker container | diff --git a/plugins/docker/docker.plugin.zsh b/plugins/docker/docker.plugin.zsh index 37bb07685..96459a031 100644 --- a/plugins/docker/docker.plugin.zsh +++ b/plugins/docker/docker.plugin.zsh @@ -41,6 +41,7 @@ alias dxc='docker container exec' alias dxcit='docker container exec -it' dxcsh() { docker exec -it "$@" /bin/sh } +dxcbash() { docker exec -it "$@" /bin/bash } if (( ! $+commands[docker] )); then return From 3914197aa2fba3ffe12a05f64379c85aa3952646 Mon Sep 17 00:00:00 2001 From: baltic-tea <97766478+baltic-tea@users.noreply.github.com> Date: Sun, 10 Nov 2024 16:44:16 +0300 Subject: [PATCH 6/8] feat(docker): add new aliases Co-authored-by: Matthew Adams --- plugins/docker/docker.plugin.zsh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/plugins/docker/docker.plugin.zsh b/plugins/docker/docker.plugin.zsh index 96459a031..9f320d771 100644 --- a/plugins/docker/docker.plugin.zsh +++ b/plugins/docker/docker.plugin.zsh @@ -22,9 +22,16 @@ alias dpu='docker pull' alias dpsh='docker push' alias dr='docker container run' alias drit='docker container run -it' +alias dritbash='docker run -it --entrypoint /bin/bash' +alias dritp='docker container run -it -v $PWD:/pwd -w /pwd' +alias dritprm='docker container run --rm -it -v $PWD:/pwd -w /pwd' +alias dritsh='docker run -it --entrypoint /bin/sh' +alias dritshp='docker run -it --entrypoint /bin/sh -v $PWD:/pwd -w /pwd' alias dritrm='docker container run --rm -it' alias drm='docker container rm' alias 'drm!'='docker container rm -f' +alias 'drma!'='docker container ls -a -q | xargs docker container rm -f' +alias drp='docker container run -v $PWD:/pwd -w /pwd' alias dst='docker container start' alias drs='docker container restart' alias dsta='docker stop $(docker ps -q)' From e12ff3d8289fe4306da284bfcd8b90db0aa2d966 Mon Sep 17 00:00:00 2001 From: baltic-tea <97766478+baltic-tea@users.noreply.github.com> Date: Sun, 10 Nov 2024 16:53:54 +0300 Subject: [PATCH 7/8] fix(README): fix docker aliases documentation --- plugins/docker/README.md | 103 +++++++++++++++++++++------------------ 1 file changed, 55 insertions(+), 48 deletions(-) diff --git a/plugins/docker/README.md b/plugins/docker/README.md index 2e7ab4e96..7b8a8c8a7 100644 --- a/plugins/docker/README.md +++ b/plugins/docker/README.md @@ -41,53 +41,60 @@ 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 | -| 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) | -| dii | `docker image inspect` | Display detailed information on one or more images | -| dils | `docker image ls` | List docker images | -| 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 | -| dni | `docker network inspect` | Return information about one or more networks | -| dnls | `docker network ls` | List all networks the engine daemon knows about, including those spanning multiple hosts | -| 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) | -| drm! | `docker container rm -f` | Force the removal of a running container (uses SIGKILL) | -| 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 | -| dvrm | `docker volume rm` | Remove one or more volumes | -| 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 | +| 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 | +| 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) | +| dii | `docker image inspect` | Display detailed information on one or more images | +| dils | `docker image ls` | List docker images | +| 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 | +| dni | `docker network inspect` | Return information about one or more networks | +| dnls | `docker network ls` | List all networks the engine daemon knows about, including those spanning multiple hosts | +| 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 | +| dritbash | `docker run -it --entrypoint /bin/bash` | Create a new container and start it in an interactive mode with Bash | +| dritp | `docker container run -it -v $PWD:/pwd -w /pwd` | Create a new container and start it in an interactive mode, mounting current directory as `/pwd` | +| dritprm | `docker container run --rm -it -v $PWD:/pwd -w /pwd` | Create a new container and start it in an interactive mode with auto-removal, mounting current directory as `/pwd` | +| dritsh | `docker run -it --entrypoint /bin/sh` | Create a new container and start it in an interactive mode with shell | +| dritshp | `docker run -it --entrypoint /bin/sh -v $PWD:/pwd -w /pwd` | Create a new container and start it in an interactive mode with shell, mounting current directory as `/pwd` | +| drm | `docker container rm` | Remove the specified container(s) | +| drm! | `docker container rm -f` | Force the removal of a running container (uses SIGKILL) | +| drma! | `docker container ls -a -q \| xargs docker container rm -f` | Force the removal all containers | +| drp | `docker container run -v $PWD:/pwd -w /pwd` | Run a container with the current directory mounted as `/pwd` | +| 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 | +| dvrm | `docker volume rm` | Remove one or more volumes | +| 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 | -| dxcbash | `dxcbash() { docker exec -it "$@" /bin/bash }` | Run a interactive bash inside a running docker container | + +| Name | Function | Description | +| :------- | :---------------------------------------------- | :---------------------------------------------------------------------- | +| dxcsh | `dxcsh() { docker exec -it "$@" /bin/sh }` | Run a interactive shell inside a running docker container | +| dxcbash | `dxcbash() { docker exec -it "$@" /bin/bash }` | Run a interactive bash inside a running docker container | From c7d172b22ede09da04e50c00ba74e14643e6c2cc Mon Sep 17 00:00:00 2001 From: baltic-tea <97766478+baltic-tea@users.noreply.github.com> Date: Sun, 10 Nov 2024 17:07:07 +0300 Subject: [PATCH 8/8] fix(README): add missing aliases from master branch --- plugins/docker/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/docker/README.md b/plugins/docker/README.md index 7b8a8c8a7..58d681f13 100644 --- a/plugins/docker/README.md +++ b/plugins/docker/README.md @@ -51,6 +51,7 @@ zstyle ':omz:plugins:docker' legacy-completion yes | dii | `docker image inspect` | Display detailed information on one or more images | | dils | `docker image ls` | List docker images | | dipu | `docker image push` | Push an image or repository to a remote registry | +| dipru | `docker image prune -a` | Remove all images not referenced by any container | | 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 | @@ -65,6 +66,7 @@ zstyle ':omz:plugins:docker' legacy-completion yes | 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 | +| dpsa | `docker ps -a` | List all running and stopped containers | | 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 |