Docker 搜索镜像_后端

一、search 命令

您可以通过下面命令进行搜索:

docker search [option] keyword

比如,您想搜索仓库中 mysql 相关的镜像,可以输入如下命令:

docker search mysql

Docker 搜索镜像_搜索_02

二、search 子命令

命令行输入 docker search --help, 输出如下:

Usage:  docker search [OPTIONS] TERM

Search the Docker Hub for images

Options:
  -f, --filter filter   Filter output based on conditions provided
      --help            Print usage
      --limit int       Max number of search results (default 25)
      --no-index        Don't truncate output
      --no-trunc        Don't truncate output

可以看到 search 支持的子命令有:

  • -f, --filter filter: 过滤输出的内容;
  • --limit int:指定搜索内容展示个数;
  • --no-index: 不截断输出内容;
  • --no-trunc:不截断输出内容;

举个列子,比如我们想搜索官方提供的 mysql 镜像,命令如下:

docker search --filter=is-offical=true mysql

Docker 搜索镜像_mysql_03

再比如,我们想搜索 Stars 数超过 100 的 mysql 镜像:

docker search --filter=stars=100 mysql

Docker 搜索镜像_mysql_04


持续更新中,欢迎订阅......