diff options
author | Karsten Kosmala <kosmala@cosmocode.de> | 2015-02-16 12:04:37 +0100 |
---|---|---|
committer | Karsten Kosmala <kosmala@cosmocode.de> | 2015-02-16 12:04:37 +0100 |
commit | cd36deda23a1f6f53ba910077b22c200fb820299 (patch) | |
tree | 099aade4a4cad7ef62ad694dbeba54146ef8b23b /plugins/docker/_docker | |
parent | 5ee54032da9e5f9c5bd96dae877fbf6e08ad7af6 (diff) | |
download | zsh-cd36deda23a1f6f53ba910077b22c200fb820299.tar.gz zsh-cd36deda23a1f6f53ba910077b22c200fb820299.tar.bz2 zsh-cd36deda23a1f6f53ba910077b22c200fb820299.zip |
added stats command to docker plugin
Diffstat (limited to 'plugins/docker/_docker')
-rw-r--r-- | plugins/docker/_docker | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/plugins/docker/_docker b/plugins/docker/_docker index 880b6faa6..df8319ea7 100644 --- a/plugins/docker/_docker +++ b/plugins/docker/_docker @@ -219,6 +219,10 @@ __start() { __docker_containers } +__stats() { + __docker_containers +} + __stop() { _arguments \ '(-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" "search":"Search for an image in the docker index" "start":"Start a stopped container" + "stats":"Display a live stream of one or more containers' resource usage statistics" "stop":"Stop a running container" "tag":"Tag an image into a repository" "top":"Lookup the running processes of a container" @@ -351,6 +356,8 @@ case "$words[1]" in __save ;; search) __search ;; + stats) + __stats ;; start) __start ;; stop) |