Docker remove image rmi imageName not working

Viewed 50

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?

1 Answers

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