docker rmi cannot remove images, with: no such id

前端 未结 9 1357
感情败类
感情败类 2021-01-30 12:52

I have a lot of images. When I try to remove them with docker rmi

$ sudo docker rmi acd33a9490dc
Error response from daemon: No such id: 75ce1f6710b         


        
9条回答
  •  攒了一身酷
    2021-01-30 13:16

    If you need to remove several images, then you can delete all containers with

    sudo docker ps -a -q | xargs -n 1 -I {} sudo docker rm {}
    

    Now you can remove any images.

提交回复
热议问题