Docker 删除 images
Posted vipsoft
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Docker 删除 images相关的知识,希望对你有一定的参考价值。
1 查看本地已用镜像文件
[root@localhost web]# docker images
2.删除镜像 Redis
[root@localhost web]# docker rmi 5958914cc558
报错:image is being used by stopped container 569d84e1bc9f
3.查询容器
[root@localhost web]# docker ps -a
4.停用容器 :sudo docker stop [CONTAINER ID ]
5.删除容器:sudo docker rm [CONTAINER ID]
6.删除镜像:sudo docker rmi [Image ID]
7.检查是否被删除:sudo docker images
详细操作见下图
以上是关于Docker 删除 images的主要内容,如果未能解决你的问题,请参考以下文章