Docker初学者入门--安装笔记( 三 )


完成后查看:
[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
(可以发现删除了两层, 说明镜像是分层的)




推荐阅读