Managing Images
- After fetching, the container images are stored on the host
- Use
docker imagesto get a list of images - Use
docker inspect IMAGEto inspect the details of image and get more information of that image. - Or use
docker image --helpto 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
-fflag.
Last updated on