Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
github
oh-my-zsh
Commits
cd36deda
Commit
cd36deda
authored
Feb 16, 2015
by
Karsten Kosmala
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added stats command to docker plugin
parent
5ee54032
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
_docker
plugins/docker/_docker
+7
-0
No files found.
plugins/docker/_docker
View file @
cd36deda
...
@@ -219,6 +219,10 @@ __start() {
...
@@ -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=(
...
@@ -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
...
@@ -351,6 +356,8 @@ case "$words[1]" in
__save ;;
__save ;;
search)
search)
__search ;;
__search ;;
stats)
__stats ;;
start)
start)
__start ;;
__start ;;
stop)
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