Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Ohmyzsh
Commits
5b429b6e
Commit
5b429b6e
authored
Feb 18, 2015
by
Robby Russell
Browse files
Merge pull request #3596 from kossmac/master
added stats command to docker plugin
parents
24ebf9cf
cd36deda
Changes
1
Show whitespace changes
Inline
Side-by-side
plugins/docker/_docker
View file @
5b429b6e
...
...
@@ -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)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment