docker images
Manage 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*}"
Copyright © 2014—present the tldr-pages team and contributors.
This work is licensed under the Creative Commons Attribution 4.0 International License (CC-BY).