Can’t delete docker image with dependent child images

前端 未结 19 2208
挽巷
挽巷 2020-12-02 06:11

I am trying

docker rmi c565603bc87f

Error:

Error response from daemon: conflict: unable to delete c565603bc87f (ca

19条回答
  •  暖寄归人
    2020-12-02 06:49

    all previous answers are correct but here is one solution which is just deleteing all of your images forcefully (use this command at your own risk it will delete all of your images)

    docker rmi $(docker images -q) -f
    

提交回复
热议问题