mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-03-28 21:16:20 +01:00
docker-images: add filter example (#4819)
This commit is contained in:
parent
4e011efcbe
commit
61cd51518c
1 changed files with 6 additions and 2 deletions
|
@ -9,12 +9,16 @@
|
|||
|
||||
- List all Docker images including intermediates:
|
||||
|
||||
`docker images -a`
|
||||
`docker images --all`
|
||||
|
||||
- List the output in quiet mode (only numeric IDs):
|
||||
|
||||
`docker images -q`
|
||||
`docker images --quiet`
|
||||
|
||||
- List all Docker images not used by any container:
|
||||
|
||||
`docker images --filter dangling=true`
|
||||
|
||||
- List images that contain a substring in their name:
|
||||
|
||||
`docker images "{{*name*}}"`
|
||||
|
|
Loading…
Add table
Reference in a new issue