Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
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
c35ca172
Commit
c35ca172
authored
Nov 15, 2022
by
Rafael Bernard Araújo
Committed by
Carlo
Nov 24, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(docker): add `dsta` alias
Closes #11089
parent
1c06ea24
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
0 deletions
+2
-0
README.md
plugins/docker/README.md
+1
-0
docker.plugin.zsh
plugins/docker/docker.plugin.zsh
+1
-0
No files found.
plugins/docker/README.md
View file @
c35ca172
...
...
@@ -58,6 +58,7 @@ file**, but be aware of the side effects:
| drm |
`docker container rm`
| Remove the specified container(s) |
| drm! |
`docker container rm -f`
| Force the removal of a running container (uses SIGKILL) |
| dst |
`docker container start`
| Start one or more stopped containers |
| dsta |
`docker stop $(docker ps -q)`
| Stop all running containers |
| dstp |
`docker container stop`
| Stop one or more running containers |
| dtop |
`docker top`
| Display the running processes of a container |
| dvi |
`docker volume inspect`
| Display detailed information about one or more volumes |
...
...
plugins/docker/docker.plugin.zsh
View file @
c35ca172
...
...
@@ -22,6 +22,7 @@ alias drit='docker container run -it'
alias
drm
=
'docker container rm'
alias
'drm!'
=
'docker container rm -f'
alias
dst
=
'docker container start'
alias
dsta
=
'docker stop $(docker ps -q)'
alias
dstp
=
'docker container stop'
alias
dtop
=
'docker top'
alias
dvi
=
'docker volume inspect'
...
...
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