mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-03-28 21:16:20 +01:00
create docker-images.md
initial
This commit is contained in:
parent
67e8c7552c
commit
785913b392
1 changed files with 20 additions and 0 deletions
20
pages.pl/common/docker-images.md
Normal file
20
pages.pl/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…
Add table
Reference in a new issue