How to remove multiple docker images with the same imageID?

后端 未结 8 2244
余生分开走
余生分开走 2021-01-30 20:15

I created a local docker registry and then pull some of my docker images from docker hub and then push them to the local registry. Now I want to remove my local images. But the

8条回答
  •  萌比男神i
    2021-01-30 20:50

    Run the following command to remove multiple docker images with the same IMAGE ID.

    sudo docker rmi -f **IMAGE ID**
    

提交回复
热议问题