docker删除镜像,镜像名不为none,tag为none,删除时报错image has dependent child images解决
Posted giantbranch
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了docker删除镜像,镜像名不为none,tag为none,删除时报错image has dependent child images解决相关的知识,希望对你有一定的参考价值。
首先执行下面命令查看镜像
docker images
比如有如下tag为none的镜像,docker rmi -f <image_id>
会报错:image has dependent child images
192.168.10.25:5000/test <none> 4ee9a9610182 5 weeks ago 3.64GB
首先给要删除的镜像打tag,注意镜像名要相同
docker tag <image_id> <镜像名>:<tag>
以上面的为例就是
docker tag 4ee9a9610182 192.168.10.25:5000/test:old
192.168.10.25:5000/test
必须与要删除的一致,后面的tag可以随意,方便键盘输入就行
最后就可以删除了
docker rmi 192.168.10.25:5000/test:old
以上是关于docker删除镜像,镜像名不为none,tag为none,删除时报错image has dependent child images解决的主要内容,如果未能解决你的问题,请参考以下文章