首页 > 服务器 > Web服务器 > 正文

docker image删不掉的解决办法

2024-09-01 13:50:01
字体:
来源:转载
供稿:网友

在使用Docker的时候遇到删不掉image的情况,如下:

root@ubuntu:/opt/docker# docker imagesREPOSITORY     TAG         IMAGE ID      CREATED       SIZEdoor/ubuntu-nginx  v2         5e4f2da203e2    5 minutes ago    283.3 MB<none>       <none>       46987ed2da40    33 minutes ago   129 MB<none>       <none>       20248c31e1a2    45 minutes ago   129 MBdoor/ubuntu-nginx  v1         0e35a55569f5    About an hour ago  280.8 MBubuntu       latest       104bec311bcd    2 weeks ago     129 MBhello-world     latest       c54a2cc56cbb    6 months ago    1.848 kBroot@ubuntu:/opt/docker# docker rmi 5e4f2da203e2Error response from daemon: conflict: unable to delete 5e4f2da203e2 (must be forced) - image is being used by stopped container 06622513ce3c

解决方法:

1.先查询记录 docker ps -a

2.把该镜像的记录全部删除掉,如果删除所有镜像的记录,可以使用:docker ps -a|awk '{print $1}'|xargs docker rm

3.docker rmi 5e4f2da203e2就可以了

网上还有网友使用service docker restrat 之后再删,本人试了一下不管用,可能是因为环境不一样,哈哈!

以上所述是小编给大家介绍的docker image删不掉的解决办法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对VEVB武林网网站的支持!


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表