docker search的使用详解
描述搜索镜像用法docker search [OPTIONS] TERM选项--automated:弃用,只列出自动构建类型的镜像--filter , -f:基于给定条件过滤输出--format:使用模板格式化显示输出--limit:Max number of search results ,默认值25--no-trunc:禁止截断输出--stars , -s:弃用,只显示收藏数不小于几颗星的镜像
·
描述
搜索镜像
用法
docker search [OPTIONS] TERM
选项
- --automated:弃用,只列出自动构建类型的镜像
- --filter , -f:基于给定条件过滤输出
- --format:使用模板格式化显示输出
- --limit:Max number of search results ,默认值25
- --no-trunc:禁止截断输出
- --stars , -s:弃用,只显示收藏数不小于几颗星的镜像,移到--filter中使用
实例
搜索镜像名中包含busybox的镜像
docker search busybox
搜索不小于3星,描述不截断,镜像名中包含busybox的镜像
docker search --filter=stars=3 --no-trunc busybox
限制搜索输出个数
docker search redis --limit 5
过滤--filter的使用
stars 收藏星数
docker search --filter stars=3 busybox
IS-AUTOMATED 是否自动构建
docker search --filter is-automated=true busybox
IS-OFFICIAL 是否官方镜像
docker search --filter is-official=true --filter stars=3 busybox
格式化输出
-
.Description 镜像描述
-
.StarCount star数量
-
.IsOfficial “OK” 表示官方镜像
-
.IsAutomated “OK” 表示自动构建
$ docker search --format "{{.Name}}: {{.StarCount}}" nginx
nginx: 5441
jwilder/nginx-proxy: 953
richarvey/nginx-php-fpm: 353
million12/nginx-php: 75
webdevops/php-nginx: 70
h3nrik/nginx-ldap: 35
bitnami/nginx: 23
evild/alpine-nginx: 14
million12/nginx: 9
maxexcloo/nginx: 7
$ docker search --format "table {{.Name}}\t{{.IsAutomated}}\t{{.IsOfficial}}" nginx
NAME AUTOMATED OFFICIAL
nginx [OK]
jwilder/nginx-proxy [OK]
richarvey/nginx-php-fpm [OK]
jrcs/letsencrypt-nginx-proxy-companion [OK]
million12/nginx-php [OK]
webdevops/php-nginx [OK]
更多推荐
已为社区贡献1条内容
所有评论(0)