Skip to Content
This project is a work in progress. If you have any questions or suggestions, feel free to contact me.
DockerManaging Images

Managing Images

  • After fetching, the container images are stored on the host
  • Use docker images to get a list of images
  • Use docker inspect IMAGE to inspect the details of image and get more information of that image.
  • Or use docker image --help to get an overview of all options related to managing container images
  • An image cannot be removed without removing the container. You can remove it using force a -f flag.
Last updated on