mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 08:50:08 +00:00
added stats command to docker plugin
This commit is contained in:
parent
5ee54032da
commit
cd36deda23
1 changed files with 7 additions and 0 deletions
|
@ -219,6 +219,10 @@ __start() {
|
||||||
__docker_containers
|
__docker_containers
|
||||||
}
|
}
|
||||||
|
|
||||||
|
__stats() {
|
||||||
|
__docker_containers
|
||||||
|
}
|
||||||
|
|
||||||
__stop() {
|
__stop() {
|
||||||
_arguments \
|
_arguments \
|
||||||
'(-t,--time=)'{-t,--time=}'[Number of seconds to wait for the container to stop before killing it.]'
|
'(-t,--time=)'{-t,--time=}'[Number of seconds to wait for the container to stop before killing it.]'
|
||||||
|
@ -280,6 +284,7 @@ _1st_arguments=(
|
||||||
"save":"Save an image to a tar archive"
|
"save":"Save an image to a tar archive"
|
||||||
"search":"Search for an image in the docker index"
|
"search":"Search for an image in the docker index"
|
||||||
"start":"Start a stopped container"
|
"start":"Start a stopped container"
|
||||||
|
"stats":"Display a live stream of one or more containers' resource usage statistics"
|
||||||
"stop":"Stop a running container"
|
"stop":"Stop a running container"
|
||||||
"tag":"Tag an image into a repository"
|
"tag":"Tag an image into a repository"
|
||||||
"top":"Lookup the running processes of a container"
|
"top":"Lookup the running processes of a container"
|
||||||
|
@ -351,6 +356,8 @@ case "$words[1]" in
|
||||||
__save ;;
|
__save ;;
|
||||||
search)
|
search)
|
||||||
__search ;;
|
__search ;;
|
||||||
|
stats)
|
||||||
|
__stats ;;
|
||||||
start)
|
start)
|
||||||
__start ;;
|
__start ;;
|
||||||
stop)
|
stop)
|
||||||
|
|
Loading…
Reference in a new issue