docker 搜索

描述在 Docker Hub 中搜索镜像
用法docker search [OPTIONS] TERM

描述

Docker Hub 中搜索镜像

选项

选择违约描述
-f, --filter根据提供的条件筛选输出
--format使用 Go 模板进行精美打印搜索
--limit最大搜索结果数
--no-trunc不截断输出

例子

按名称搜索镜像

此示例显示名称包含 'busybox' 的镜像:

$ docker search busybox

NAME                             DESCRIPTION                                     STARS     OFFICIAL
busybox                          Busybox base image.                             316       [OK]
progrium/busybox                                                                 50
radial/busyboxplus               Full-chain, Internet enabled, busybox made...   8
odise/busybox-python                                                             2
azukiapp/busybox                 This image is meant to be used as the base...   2
ofayau/busybox-jvm               Prepare busybox to install a 32 bits JVM.       1
shingonoide/archlinux-busybox    Arch Linux, a lightweight and flexible Lin...   1
odise/busybox-curl                                                               1
ofayau/busybox-libc32            Busybox with 32 bits (and 64 bits) libs         1
peelsky/zulu-openjdk-busybox                                                     1
skomma/busybox-data              Docker image suitable for data volume cont...   1
elektritter/busybox-teamspeak    Lightweight teamspeak3 container based on...    1
socketplane/busybox                                                              1
oveits/docker-nginx-busybox      This is a tiny NginX docker image based on...   0
ggtools/busybox-ubuntu           Busybox ubuntu version with extra goodies       0
nikfoundas/busybox-confd         Minimal busybox based distribution of confd     0
openshift/busybox-http-app                                                       0
jllopis/busybox                                                                  0
swyckoff/busybox                                                                 0
powellquiring/busybox                                                            0
williamyeh/busybox-sh            Docker image for BusyBox's sh                   0
simplexsys/busybox-cli-powered   Docker busybox images, with a few often us...   0
fhisamoto/busybox-java           Busybox java                                    0
scottabernethy/busybox                                                           0
marclop/busybox-solr

显示未截断的描述 (--no-trunc)

此示例显示名称中包含 'busybox' 的镜像, 至少 3 星,并且说明在输出中未被截断:

$ docker search --filter=stars=3 --no-trunc busybox

NAME                 DESCRIPTION                                                                               STARS     OFFICIAL
busybox              Busybox base image.                                                                       325       [OK]
progrium/busybox                                                                                               50
radial/busyboxplus   Full-chain, Internet enabled, busybox made from scratch. Comes in git and cURL flavors.   8

限制搜索结果 (--limit)

该标志是搜索返回的最大结果数。如果没有 值,则默认值由守护进程设置。--limit

筛选 (--filter)

筛选标志 ( 或 ) 格式是一对。如果还有更多 than one filter,然后传递多个标志(例如 )。-f--filterkey=value--filter is-official=true --filter stars=3

当前支持的筛选器包括:

  • stars (int - 镜像的星数)
  • is-automated (boolean - true 或 false) - 镜像是否自动化(已弃用)
  • is-official (boolean - true or false) - 镜像是否为官方镜像

星星

此示例显示名称中包含 'busybox' 且 至少 3 星:

$ docker search --filter stars=3 busybox

NAME                 DESCRIPTION                                     STARS     OFFICIAL
busybox              Busybox base image.                             325       [OK]
progrium/busybox                                                     50
radial/busyboxplus   Full-chain, Internet enabled, busybox made...   8

是官方的

此示例显示名称至少包含 'busybox' 的镜像 3 星,是官方版本:

$ docker search --filter is-official=true --filter stars=3 busybox

NAME      DESCRIPTION           STARS     OFFICIAL
busybox   Busybox base image.   325       [OK]

设置输出格式 (--format)

格式选项 () pretty-prints 搜索输出 使用 Go 模板。--format

Go 模板的有效占位符为:

占 位 符描述
.Name镜像名称
.Description图片描述
.StarCount镜像的星数
.IsOfficial如果图片是官方的,则为“OK”
.IsAutomated如果镜像构建是自动的(已弃用),则为“OK”

当您使用该选项时,该命令将 完全按照模板声明的方式输出数据。如果使用该指令,则还包括列标题。--formatsearchtable

以下示例使用不带标头的模板,并输出所有镜像的 and 条目(以冒号 () 分隔):NameStarCount:

$ 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

此示例输出 table 格式:

$ docker search --format "table {{.Name}}\t{{.IsOfficial}}" nginx

NAME                                     OFFICIAL
nginx                                    [OK]
jwilder/nginx-proxy
richarvey/nginx-php-fpm
jrcs/letsencrypt-nginx-proxy-companion
million12/nginx-php
webdevops/php-nginx