如果你還想從頭學起 Docker,可以看看這個系列的文章哦!
https://www.cnblogs.com/poloyy/category/1870863.html
作用
從 Docker Hub 查找鏡像
語法格式
docker search [OPTIONS] TERM
options 說明
option | 作用 |
-f, --filter filter | 根據提供的 filter 過濾輸出 |
--limit int | 搜索結果條數最大為 int(默認25) |
--no-trunc | 顯示完整的鏡像 description |
--format |
使用 Go 模板進行美觀打印 |
簡單栗子
--filter 栗子
stars 的栗子
搜索 star 數量>3 的 busybox 鏡像並打印詳細描述
docker search --filter=stars=3 --no-trunc busybox NAME DESCRIPTION STARS OFFICIAL AUTOMATED busybox Busybox base image. 2272 [OK] progrium/busybox 70 [OK] radial/busyboxplus Full-chain, Internet enabled, busybox made from scratch. Comes in git and cURL flavors. 40 [OK] yauritux/busybox-curl Busybox with CURL 16 arm32v7/busybox Busybox base image. 9 armhf/busybox Busybox base image. 6 odise/busybox-curl 4 [OK] arm64v8/busybox Busybox base image.
搜索 star 數量>3000 的 mysql 鏡像
docker search mysql --filter=STARS=3000 NAME DESCRIPTION STARS OFFICIAL AUTOMATED mysql MySQL is a widely used, open-source relation… 11063 [OK] mariadb MariaDB Server is a high performing open sou… 4193 [OK]
is-automated 的栗子
搜索自動構建的 busybox 鏡像
docker search --filter is-automated=true busybox NAME DESCRIPTION STARS OFFICIAL AUTOMATED progrium/busybox 70 [OK] radial/busyboxplus Full-chain, Internet enabled, busybox made f… 40 [OK] odise/busybox-curl 4 [OK] odise/busybox-python 4 [OK] prom/busybox Prometheus Busybox Docker base images 2 [OK] ggtools/busybox-ubuntu Busybox ubuntu version with extra goodies 0 [OK]
能看到 AUTOMATED 都是 OK
is-official 的栗子
搜索 star 數量>3 且是官方版本的 busybox 鏡像
docker search --filter is-official=true --filter stars=3 busybox NAME DESCRIPTION STARS OFFICIAL AUTOMATED busybox Busybox base image. 2272 [OK]
能看到 OFFICIAL 是 OK