docker search : 从docker hub查找镜像
语法
docker search [options] term
options说明:
-
--automated :只列出 automated build类型的镜像;
-
--no-trunc :显示完整的镜像描述;
-
-s :列出收藏数不小于指定值的镜像。
实例
从docker hub查找所有镜像名包含java,并且收藏数大于10的镜像
coonote@coonote:~$ docker search -s 10 java name description stars official automated java java is a concurrent, class-based... 1037 [ok] anapsix/alpine-java oracle java 8 (and 7) with glibc ... 115 [ok] develar/java 46 [ok] isuper/java-oracle this repository contains all java... 38 [ok] lwieske/java-8 oracle java 8 container - full ... 27 [ok] nimmis/java-centos this is docker images of centos 7... 13 [ok]
参数说明:
name: 镜像仓库源的名称
description: 镜像的描述
official: 是否 docker 官方发布
stars: 类似 github 里面的 star,表示点赞、喜欢的意思。
automated: 自动构建。