mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 15:45:59 +02:00
docker-ps: add page (#4306)
This commit is contained in:
parent
43c136ffe7
commit
b6b5997b6c
1 changed files with 36 additions and 0 deletions
36
pages/common/docker-ps.md
Normal file
36
pages/common/docker-ps.md
Normal file
|
@ -0,0 +1,36 @@
|
|||
# docker ps
|
||||
|
||||
> List Docker containers.
|
||||
> More information: <https://docs.docker.com/engine/reference/commandline/ps/>.
|
||||
|
||||
- List currently running docker containers:
|
||||
|
||||
`docker ps`
|
||||
|
||||
- List all docker containers (running and stopped):
|
||||
|
||||
`docker ps --all`
|
||||
|
||||
- Show the latest created container (includes all states):
|
||||
|
||||
`docker ps --latest`
|
||||
|
||||
- Filter containers that contain a substring in their name:
|
||||
|
||||
`docker ps --filter="name={{name}}"`
|
||||
|
||||
- Filter containers that share a given image as an ancestor:
|
||||
|
||||
`docker ps --filter "ancestor={{image}}:{{tag}}"`
|
||||
|
||||
- Filter containers by exit status code:
|
||||
|
||||
`docker ps --all --filter="exited={{code}}"`
|
||||
|
||||
- Filter containers by status (created, running, removing, paused, exited and dead):
|
||||
|
||||
`docker ps --filter="status={{status}}"`
|
||||
|
||||
- Filter containers that mount a specific volume or have a volume mounted in a specific path:
|
||||
|
||||
`docker ps --filter="volume={{path/to/directory}}" --format "table {{.ID}}\t{{.Image}}\t{{.Names}}\t{{.Mounts}}"`
|
Loading…
Add table
Reference in a new issue