Docker(20)- docker rmi 命令详解
如果你还想从头学起 Docker,可以看看这个系列的文章哦!
https://www.cnblogs.com/poloyy/category/1870863.html
作用
删除一个或多个镜像
语法格式
docker rmi [OPTIONS] IMAGE [IMAGE...]
options 说明
options | 作用 |
-f | 强制删除 |
--no-prune | 不移除该镜像的过程镜像,默认移除 |
实际栗子
删除镜像,且不带 tag
docker rmi hello-world
删除镜像,且带 tag
docker rmi -f tomcat:latest
根据镜像ID,删除所有镜像
docker rmi -f fd484f19954f
Untagged: test1:latest
Untagged: test:latest
Untagged: test2:latest
Deleted: fd484f19954f4920da7ff372b5067f5b7ddb2fd3830cecd17b96ea9e286ba5b8
删除所有镜像
docker rmi -f $(docker images -aq)
删除多个镜像
docker rmi -f tomcat mysql