docker search

命令:docker search

[root@iZ943kh74qgZ ~]# 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-trunc        Don't truncate output
[root@iZ943kh74qgZ ~]# docker search nginx
NAME                            DESCRIPTION                                    STARS     OFFICIAL   AUTOMATED
(镜像名称)               (描述)                        (收藏)  官方    自动  nginx Official build of Nginx.
6564 [OK] jwilder/nginx-proxy Automated Nginx reverse proxy for docker c... 1079 [OK] richarvey/nginx-php-fpm Container running Nginx + PHP-FPM capable ... 418 [OK] jrcs/letsencrypt-nginx-proxy-companion LetsEncrypt container to use with nginx as... 207 [OK] kong Open-source Microservice & API Management ... 95 [OK] webdevops/php-nginx Nginx with PHP-FPM 86 [OK] bitnami/nginx Bitnami nginx Docker Image 31 [OK] linuxserver/nginx An Nginx container, brought to you by Linu... 23 tutum/nginx Base Docker Image to run Nginx server 10 webdevops/nginx Nginx container 8 [OK] blacklabelops/nginx Dockerized Nginx Reverse Proxy Server. 6 [OK] nginxdemos/nginx-ingress NGINX Ingress Controller for Kubernetes 5 1science/nginx Nginx Docker images that include Consul Te... 4 [OK] ixbox/nginx Nginx on Alpine Linux. 3 [OK] phpdockerio/nginx Note: image is now deprecated, here only t... 2 [OK] xutongle/nginx nginx http 1 [OK] schmunk42/nginx Legacy nginx image 1 pebbletech/nginx-proxy nginx-proxy sets up a container running ng... 1 [OK] toccoag/openshift-nginx Nginx reverse proxy for Nice running on sa... 1 [OK] mailu/nginx Mailu nginx frontend 0 [OK] tclavier/nginx Basic nginx container 0 [OK] watsco/nginx nginx:1.11-alpine 0 [OK] vukor/nginx Build for Nginx. Project available on http... 0 [OK] travix/nginx NGinx reverse proxy 0 [OK] jenkler/nginx Docker Nginx package 0 [root@iZ943kh74qgZ ~]# docker search nginx -s 20 Flag --stars has been deprecated, use --filter=stars=3 instead NAME DESCRIPTION STARS OFFICIAL AUTOMATED nginx Official build of Nginx. 6564 [OK] jwilder/nginx-proxy Automated Nginx reverse proxy for docker c... 1079 [OK] richarvey/nginx-php-fpm Container running Nginx + PHP-FPM capable ... 418 [OK] jrcs/letsencrypt-nginx-proxy-companion LetsEncrypt container to use with nginx as... 207 [OK] kong Open-source Microservice & API Management ... 95 [OK] webdevops/php-nginx Nginx with PHP-FPM 86 [OK] bitnami/nginx Bitnami nginx Docker Image 31 [OK] linuxserver/nginx An Nginx container, brought to you by Linu... 23

[root@iZ943kh74qgZ ~]# docker search nginx --filter=stars=3
NAME                                     DESCRIPTION                                     STARS     OFFICIAL   AUTOMATED
nginx                                    Official build of Nginx.                        6564      [OK]      
jwilder/nginx-proxy                      Automated Nginx reverse proxy for docker c...   1079                 [OK]
richarvey/nginx-php-fpm                  Container running Nginx + PHP-FPM capable ...   418                  [OK]
jrcs/letsencrypt-nginx-proxy-companion   LetsEncrypt container to use with nginx as...   207                  [OK]
kong                                     Open-source Microservice & API Management ...   95        [OK]      
webdevops/php-nginx                      Nginx with PHP-FPM                              86                   [OK]
bitnami/nginx                            Bitnami nginx Docker Image                      31                   [OK]
linuxserver/nginx                        An Nginx container, brought to you by Linu...   23                  
tutum/nginx                              Base Docker Image to run Nginx server           10                  
webdevops/nginx                          Nginx container                                 8                    [OK]
blacklabelops/nginx                      Dockerized Nginx Reverse Proxy Server.          6                    [OK]
nginxdemos/nginx-ingress                 NGINX Ingress Controller for Kubernetes         5                   
1science/nginx                           Nginx Docker images that include Consul Te...   4                    [OK]
ixbox/nginx                              Nginx on Alpine Linux.                          3                    [OK]
原文地址:https://www.cnblogs.com/gorgage/p/7286772.html