Error response from daemon: You cannot remove a running container 8c03b6c4da31d435bcaf8c4a6c59938c3b668eaff36903b13583329034508135. Stop the container before attempting removal or force remove原因:该容器正在运行中,不能直接删除
方法一…
报错如下,使用docker rmi 镜像名 报错了
Error response from daemon: conflict: unable to delete acdcfe83bcc5 (must be forced) - image is being used by stopped container 79e028dc2cbf 解决方法: 加上-f参数,表示强制删除
使用doc…