一、定义
仓库名、标签都是 none 的镜像,俗称虚悬镜像,俗称 dangling image
二、写一个虚悬镜像
cd /
mkdir docker
cd docker
vim Dockerfile
将下面的代码粘贴
FROM ubuntu
CMD echo 'action is success'
构建镜像
docker build .
备注:这里的“.”表示当前目录有一个 Dockerfile 文件
查看镜像
docker images
查找虚悬镜像
docker image ls -f dangling=true
虚悬镜像已经失去存在价值,可以删除
docker image prune