docker-images: add filter example (#4819)

This commit is contained in:
Ali Malek
2020-10-28 21:42:48 +03:30
committed by GitHub
parent 4e011efcbe
commit 61cd51518c

View File

@@ -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*}}"`