docker 镜像(二)
镜像(二)
查看 镜像/容器/数据 卷所占的空间
docker system df
1 |
|
删除镜像
docker rmi 镜像ID
```shell
如果提示报错
Error response from daemon: conflict: unable to delete feb5d9fea6a5 (must be forced) - image is being used by stopped container 13111f725991
说明之前运行过这个镜像,生成了容器,需要先删除容器,再删除镜像
使用 -f 删除一个
docker rmi -f 镜像id
使用 -f 删除多个
xxxxxxxxxx # 没有任何提示说明启动成功[root@iZ8vbfaek3x3ogtpxnpnwfZ /]# systemctl restart docker[root@iZ8vbfaek3x3ogtpxnpnwfZ /]#shell
使用 -f 删除全部
docker rmi -f $(docker images -qa)
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 GGLSS!
评论
WalineValine