mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-14 10:32:11 +03:00
docker images: add page (#3061)
This commit is contained in:
parent
e92ac25e55
commit
697da66044
20
pages/common/docker-images.md
Normal file
20
pages/common/docker-images.md
Normal file
@ -0,0 +1,20 @@
|
||||
# docker images
|
||||
|
||||
> Manage Docker images.
|
||||
> More information: <https://docs.docker.com/engine/reference/commandline/images/>.
|
||||
|
||||
- List all Docker images:
|
||||
|
||||
`docker images`
|
||||
|
||||
- List all Docker images including intermediates:
|
||||
|
||||
`docker images -a`
|
||||
|
||||
- List the output in quiet mode (only numeric IDs):
|
||||
|
||||
`docker images -q`
|
||||
|
||||
- List all Docker images not used by any container:
|
||||
|
||||
`docker images --filter dangling=true`
|
Loading…
Reference in New Issue
Block a user