1
0
Fork 0
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:
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

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