Update cheatsheets

This commit is contained in:
ivuorinen
2025-03-18 00:18:35 +00:00
parent 9cdd033c95
commit a9720510d1
43 changed files with 362 additions and 132 deletions

View File

@@ -14,28 +14,28 @@ source: https://github.com/tldr-pages/tldr.git
- List all Docker containers (running and stopped):
`docker ps --all`
`docker ps {{[-a|--all]}}`
- Show the latest created container (includes all states):
`docker ps --latest`
`docker ps {{[-l|--latest]}}`
- Filter containers that contain a substring in their name:
`docker ps --filter "name={{name}}"`
`docker ps {{[-f|--filter]}} "name={{name}}"`
- Filter containers that share a given image as an ancestor:
`docker ps --filter "ancestor={{image}}:{{tag}}"`
`docker ps {{[-f|--filter]}} "ancestor={{image}}:{{tag}}"`
- Filter containers by exit status code:
`docker ps --all --filter "exited={{code}}"`
`docker ps {{[-a|--all]}} {{[-f|--filter]}} "exited={{code}}"`
- Filter containers by status (created, running, removing, paused, exited and dead):
`docker ps --filter "status={{status}}"`
`docker ps {{[-f|--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}} {{.Image}} {{.Names}} {{.Mounts}}"`
`docker ps {{[-f|--filter]}} "volume={{path/to/directory}}" --format "table {{.ID}} {{.Image}} {{.Names}} {{.Mounts}}"`