System Grab Bag

View all TLDR pages from common (or from all pages)

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*}}"
  • Sort images by size:
    docker images --format "{{.ID}}\t{{.Size}}\t{{.Repository}}:{{.Tag}}" | sort -k 2 -h

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.