码迷,mamicode.com
首页 > 其他好文 > 详细

异常:Error response from daemon: conflict: unable to delete 6fa48e047721 (cannot be forced) - image has dependent child images

时间:2019-12-23 17:10:12      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:cannot   code   image   conf   doc   删掉   daemon   style   dock   

在删除镜像之前要先用 docker rm 删掉依赖于这个镜像的所有容器(哪怕是已经停止的容器),否则无法删除该镜像。

停止容器
# docker stop $(docker ps -a | grep "Exited" | awk ‘{print $1 }‘)
删除容器
# docker rm $(docker ps -a | grep "Exited" | awk ‘{print $1 }‘) 
# docker rm -v $(docker ps -aq -f status=exited)

删除镜像
# docker rmi $(docker images | grep "none" | awk ‘{print $3}‘)

异常:Error response from daemon: conflict: unable to delete 6fa48e047721 (cannot be forced) - image has dependent child images

标签:cannot   code   image   conf   doc   删掉   daemon   style   dock   

原文地址:https://www.cnblogs.com/yfacesclub/p/12084438.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!