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
7ea6ff8d
Unverified
Commit
7ea6ff8d
authored
Apr 13, 2022
by
Abhinav M
Committed by
GitHub
Apr 13, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(docker): rename `dls` and `dlsa` aliases to avoid conflict (#10852)
parent
ac82e156
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
README.md
plugins/docker/README.md
+2
-2
docker.plugin.zsh
plugins/docker/docker.plugin.zsh
+2
-2
No files found.
plugins/docker/README.md
View file @
7ea6ff8d
...
...
@@ -40,8 +40,8 @@ the lines below to your zshrc file**, but be aware of the side effects:
| dbl |
`docker build`
| Build an image from a Dockerfile |
| dcin |
`docker container inspect`
| Display detailed information on one or more containers |
| dlo |
`docker container logs`
| Fetch the logs of a docker container |
| dls |
`docker container ls`
| List all the running docker containers |
| dlsa |
`docker container ls -a`
| List all running and stopped containers |
| d
c
ls |
`docker container ls`
| List all the running docker containers |
| d
c
lsa |
`docker container ls -a`
| List all running and stopped containers |
| dpo |
`docker container port`
| List port mappings or a specific mapping for the container |
| dpu |
`docker pull`
| Pull an image or a repository from a registry |
| dr |
`docker container run`
| Create a new container and start it using the specified command |
...
...
plugins/docker/docker.plugin.zsh
View file @
7ea6ff8d
...
...
@@ -5,8 +5,8 @@ alias dtop='docker top'
# docker containers
alias
dcin
=
'docker container inspect'
alias
dlo
=
'docker container logs'
alias
dls
=
'docker container ls'
alias
dlsa
=
'docker container ls -a'
alias
d
c
ls
=
'docker container ls'
alias
d
c
lsa
=
'docker container ls -a'
alias
dpo
=
'docker container port'
alias
dr
=
'docker container run'
alias
drit
=
'docker container run -it'
...
...
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