images
语法:
docker images [OPTIONS] [REPOSITORY[:TAG]]
OPTIONS:参数
REPOSITORY:镜像名称
TAG:版本号
参数
选项 | 作用 |
–all , -a | 显示所有镜像(默认情况下中间镜像不会显示) |
–digests | 显示镜像摘要信息 |
–filter , -f | 根据给定条件筛选镜像 befor= dangling= label= reference= since= |
–format | 指定自定义打印格式 |
–no-trunc | 显示完整的镜像ID |
–quiet , -q | 只显示镜像ID |
自定义打印格式
自定义打印格式支持指定的字段如下:
字段 | 描述 |
.ID | 镜像 ID |
.Repository | 镜像名 |
.Tag | 镜像的tag |
.Digest | 镜像摘要 |
.CreatedSince | 创建的时间跨度 |
.CreatedAt | 创建时间点 |
.Size | 镜像磁盘大小 |
根据镜像名和tag值查询
docker images python:3.9
显示未打tag值的镜像
docker images --filter="dangling=true"
删除未打tag值额镜像
docker rmi -f $(docker images --filter="dangling=true" -q)
显示镜像ID和镜像名
docker images --format "{{.ID}}: {{.Repository}}"