删除镜像的前提是没有使用这个镜像的容器,假如有必要先删除容器(报错:Error response from daemon: conflict: unable to delete 镜像ID (must be forced) - image is being used by stopped container 容器ID则代表有容器使用了此镜像。)可以实验先实行docker rm 容器ID删除容器,假如还报错,可以看我下方删除容器的具体方法。 几条删除下令的区别
假如报错Error response from daemon: You cannot remove a running container 容器ID. Stop the container before attempting removal or force remove则代表这个容器已经启动,必要实行 docker stop 容器id,停止此容器。
6.5、容器制作成镜像