前言:
当前我们对“nginx11个force”大致比较注重,你们都想要剖析一些“nginx11个force”的相关内容。那么小编也在网上收集了一些有关“nginx11个force””的相关内容,希望小伙伴们能喜欢,咱们快快来了解一下吧!1问题
在尝试删除docker镜像时,出现了报错:
Error response from daemon: conflict: unable to remove repository Error response from daemon: conflict: unable to remove repository
使用的模版命令:
docker rmi 镜像id2.缘由
Error response from daemon: conflict: unable to remove repository reference "nginx:latest" (must force) - container 50a3d44fa9aa is using its referenced image 605c77e624dd
翻译是:
来自守护程序的错误响应:冲突:无法删除存储库引用“nginx:latest”(必须强制) - 容器 50a3d44fa9aa 正在使用其引用的映像 605c77e624dd
错误原因是:
因为在使用镜像的时候启动了容器,故得把前面使用的容器先给删除,才能继续删除镜像。
3.解决方案
3.1删除时使用名称,而不是image id,可删除成功
docker rmi 镜像名称
3.2 加上-f 强制删除
docker rmi -f 镜像id
3.3 既然占用那就按顺序删除,先容器,后镜像
docker ps -adocker rm 容器iddocker rmi 镜像id
个人还是推荐第三种方式删除
标签: #nginx11个force