完成后查看:
[root@promote ~]# docker images
REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE
tomcat latest 7658501bf516 5 days ago 506.8 MB
hello-world latest 9f5834b25059 11 months ago 1.84 kB
(4) docker rmi 镜像ID: 删除某个镜像
docker rmi hello-world (=docker rmi hello-world:lastest)
[root@promote ~]# docker rmi hello-world
Error response from daemon: Conflict, cannot delete 9f5834b25059 because the container 2084769ea199 is using it, use -f to force
Error: failed to remove images: [hello-world]
出现以上信息是因为前面运行了hello-world, 所以无法删除,可以用-f强制删除 。(docker rmi -f hello-world)
[root@promote ~]# docker rmi -f hello-world
Untagged: hello-world:latest
Deleted: 9f5834b25059239faef06a9ba681db7b7c572fc0d87d2b140b10e90e50902b53
Deleted: 65b27d3bd74d2cf4ea3aa9e250be6c632f0a347e8abd5485345c55fa6eed0258
(可以发现删除了两层, 说明镜像是分层的)
推荐阅读
- 练太极有口诀帮你 更快速入门
- Discuz! Q小白入门十问!
- Docker私有镜像
- 初学者怎么练瑜伽好呢
- 初学者如何练瑜伽才能更好呢
- 初学者练瑜伽减肥哪些姿势好呢
- mockito从入门到通关
- 什么是Docker?看这一篇干货文章就够了
- 2 「系统架构」如何使用Dockerfile制作Docker容器?
- docker 快速搭建JAVA开发环境