1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-11-23 14:20:08 +00:00

feat: add filter functions for docker

This commit is contained in:
Yuanhao Ji 2024-07-14 14:33:53 +08:00
parent fd8f72b276
commit f6c06ebfc3
No known key found for this signature in database
GPG key ID: 1026820B3E5B996B
2 changed files with 52 additions and 37 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,6 +53,7 @@ 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 |
| dif | `docker images --filter "reference=*${1}*"` | List all images with the given name |
| 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 |
@ -63,6 +64,8 @@ zstyle ':omz:plugins:docker' legacy-completion yes
| dpo | `docker container port` | List port mappings or a specific mapping for the container |
| dps | `docker ps` | List all the running docker containers |
| dpsa | `docker ps -a` | List all running and stopped containers |
| dpsf | `docker ps --filter "name=${1}"` | List all running containers with the given name |
| dpsfa | `docker ps --filter "name=${1}" -a` | List all running and stopped containers with the given name |
| 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 |

View file

@ -34,6 +34,18 @@ alias dvprune='docker volume prune'
alias dxc='docker container exec'
alias dxcit='docker container exec -it'
function dpsf {
docker ps --filter "name=${1}"
}
function dpsfa {
docker ps --filter "name=${1}" -a
}
function dif() {
docker images --filter "reference=*${1}*"
}
if (( ! $+commands[docker] )); then
return
fi