System Grab Bag

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

docker image

Manage Docker images. See also docker build, docker import, and docker pull. More information: https://docs.docker.com/engine/reference/commandline/image/.
  • List local Docker images:
    docker image ls
  • Delete unused local Docker images:
    docker image prune
  • Delete all unused images (not just those without a tag):
    docker image prune --all
  • Show the history of a local Docker image:
    docker image history {{image}}

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.