?
This document uses PHP Chinese website manual Release
在 Docker Hub 搜索圖像
docker search [OPTIONS] TERM
Name, shorthand | Default | Description |
---|---|---|
--automated | false | Only show automated builds |
--filter, -f | Filter output based on conditions provided | |
--limit | 25 | Max number of search results |
--no-trunc | false | Don’t truncate output |
--stars, -s | 0 | Only displays with at least x stars |
Command | Description |
---|---|
docker | The base command for the Docker CLI. |
搜索 Docker Hub 圖像
見從碼頭樞紐找公眾形象有關(guān)從命令行查找共享圖像的詳細(xì)信息。
注*搜索查詢最多返回25個(gè)結(jié)果。
此示例顯示名稱中包含 “busybox” 的圖像:
$ docker search busybox NAME DESCRIPTION STARS OFFICIAL AUTOMATED busybox Busybox base image. 316 [OK] progrium/busybox 50 [OK]radial/busyboxplus Full-chain, Internet enabled, busybox made... 8 [OK]odise/busybox-python 2 [OK]azukiapp/busybox This image is meant to be used as the base... 2 [OK]ofayau/busybox-jvm Prepare busybox to install a 32 bits JVM. 1 [OK]shingonoide/archlinux-busybox Arch Linux, a lightweight and flexible Lin... 1 [OK]odise/busybox-curl 1 [OK]ofayau/busybox-libc32 Busybox with 32 bits (and 64 bits) libs 1 [OK]peelsky/zulu-openjdk-busybox 1 [OK]skomma/busybox-data Docker image suitable for data volume cont... 1 [OK]elektritter/busybox-teamspeak Lightweight teamspeak3 container based on... 1 [OK]socketplane/busybox 1 [OK]oveits/docker-nginx-busybox This is a tiny NginX docker image based on... 0 [OK]ggtools/busybox-ubuntu Busybox ubuntu version with extra goodies 0 [OK]nikfoundas/busybox-confd Minimal busybox based distribution of confd 0 [OK]openshift/busybox-http-app 0 [OK]jllopis/busybox 0 [OK]swyckoff/busybox 0 [OK]powellquiring/busybox 0 [OK]williamyeh/busybox-sh Docker image for BusyBox's sh 0 [OK]simplexsys/busybox-cli-powered Docker busybox images, with a few often us... 0 [OK]fhisamoto/busybox-java Busybox java 0 [OK]scottabernethy/busybox 0 [OK]marclop/busybox-solr
此示例顯示名稱中包含 'busybox' 的圖像,至少3星,并且說明在輸出中不會被截?cái)啵?/p>
$ docker search --stars=3 --no-trunc busybox NAME DESCRIPTION STARS OFFICIAL AUTOMATED busybox Busybox base image. 325 [OK] progrium/busybox 50 [OK]radial/busyboxplus Full-chain, Internet enabled, busybox made from scratch. Comes in git and cURL flavors. 8 [OK]
標(biāo)志--limit
是搜索結(jié)果返回的最大數(shù)量。該值可以在1到100之間的范圍內(nèi)。--limit
默認(rèn)值為25。
過濾標(biāo)志(-f
或--filter
)格式是一key=value
對。如果有多個(gè)過濾器,則傳遞多個(gè)標(biāo)志(例如--filter "foo=bar" --filter "bif=baz"
)
目前支持的過濾器是:
star(int - 圖像中星星的數(shù)量)
is-automated(布爾 - 真或假) - 圖像是否是自動的
is-official(布爾值 - true 或 false) - 圖像是否為官方
此示例顯示名稱中包含 'busybox' 且至少3星的圖像:
$ docker search --filter stars=3 busybox NAME DESCRIPTION STARS OFFICIAL AUTOMATED busybox Busybox base image. 325 [OK] progrium/busybox 50 [OK]radial/busyboxplus Full-chain, Internet enabled, busybox made... 8 [OK]
此示例顯示名稱中包含 “busybox” 的圖像,并且是自動生成的:
$ docker search --filter is-automated busybox NAME DESCRIPTION STARS OFFICIAL AUTOMATED progrium/busybox 50 [OK]radial/busyboxplus Full-chain, Internet enabled, busybox made... 8 [OK]
這個(gè)例子顯示的圖像名稱包含 'busybox',至少3星,并且是官方版本:
$ docker search --filter "is-official=true" --filter "stars=3" busybox NAME DESCRIPTION STARS OFFICIAL AUTOMATED progrium/busybox 50 [OK]radial/busyboxplus Full-chain, Internet enabled, busybox made... 8 [OK]