docker-images: add filter example (#4819)

beep
Ali Malek 2020-10-28 21:42:48 +03:30 committed by GitHub
parent 4e011efcbe
commit 61cd51518c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 2 deletions

View File

@ -9,12 +9,16 @@
- List all Docker images including intermediates: - List all Docker images including intermediates:
`docker images -a` `docker images --all`
- List the output in quiet mode (only numeric IDs): - List the output in quiet mode (only numeric IDs):
`docker images -q` `docker images --quiet`
- List all Docker images not used by any container: - List all Docker images not used by any container:
`docker images --filter dangling=true` `docker images --filter dangling=true`
- List images that contain a substring in their name:
`docker images "{{*name*}}"`