重命名镜像
d tag ubuntu-git:latest ubuntu-non-git:nothing
查看镜像历史
docker history IMAGE
docker images
查看镜像
批量删除匿名中间镜像
docker rmi `docker images | grep "^<" | awk '{print $3}'`
- 删除过程有有些会包容器依赖,根据需要跳过,或者停止容器继续删除镜像
d tag ubuntu-git:latest ubuntu-non-git:nothing
docker history IMAGE
查看镜像
docker rmi `docker images | grep "^<" | awk '{print $3}'`