System Grab Bag

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

docker rmi

Remove one or more Docker images. More information: https://docs.docker.com/engine/reference/commandline/rmi/.
  • Show help:
    docker rmi
  • Remove one or more images given their names:
    docker rmi {{image1 image2 ...}}
  • Force remove an image:
    docker rmi --force {{image}}
  • Remove an image without deleting untagged parents:
    docker rmi --no-prune {{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.