docker rmi cannot remove images, with: no such id

前端 未结 9 1329
感情败类
感情败类 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:22

    this will remove all your container and then you can remove the images

    sudo docker ps -a | awk '{print $1}' | grep -v CONTAINER | xargs sudo docker rm {}\;

提交回复
热议问题