mirror of https://github.com/CrimsonTome/tldr.git
499 B
499 B
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 --all
- List the output in quiet mode (only numeric IDs):
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*}}"