Home > front end >  Docker remove image rmi imageName not working
Docker remove image rmi imageName not working

Time:12-06

I have these images enter image description here

If I remove the first image it worked enter image description here

But I couldn't remove the second image

enter image description here

Any reason?

CodePudding user response:

We have to use the tag name as well. For the new-image it will get the latest tag as default

docker rmi httpd:alpine

enter image description here

  • Related