Manage Docker images.
# To list all Docker images:
docker images
# To list all Docker images including intermediates:
docker images --all
# To list the output in quiet mode (only numeric IDs):
docker images --quiet
# To list all Docker images not used by any container:
docker images --filter dangling=true
# To list images that contain a substring in their name:
docker images "<*name*>"