1. 问题
使用docker image rm命令删除无用的本地镜像报错
Error response from daemon: conflict: unable to delete 04897d0fa3ca (must be forced) - image is being used by stopped container 22d5578f18c3
2. 原因
命令使用错误
首先使用docker images查看本地镜像
然后选择需要删除的本地镜像,找到第三列 image id
删除本地镜像 docker image rmi xx
3. 注意
需要先停止正在运行的本地镜像对应的实例