github.com/gondor/docker@v1.9.0-rc1/man/docker-search.1.md (about)

     1  % DOCKER(1) Docker User Manuals
     2  % Docker Community
     3  % JUNE 2014
     4  # NAME
     5  docker-search - Search the Docker Hub for images
     6  
     7  # SYNOPSIS
     8  **docker search**
     9  [**--automated**[=*false*]]
    10  [**--help**]
    11  [**--no-trunc**[=*false*]]
    12  [**-s**|**--stars**[=*0*]]
    13  TERM
    14  
    15  # DESCRIPTION
    16  
    17  Search Docker Hub for images that match the specified `TERM`. The table
    18  of images returned displays the name, description (truncated by default), number
    19  of stars awarded, whether the image is official, and whether it is automated.
    20  
    21  *Note* - Search queries will only return up to 25 results
    22  
    23  # OPTIONS
    24  **--automated**=*true*|*false*
    25     Only show automated builds. The default is *false*.
    26  
    27  **--help**
    28    Print usage statement
    29  
    30  **--no-trunc**=*true*|*false*
    31     Don't truncate output. The default is *false*.
    32  
    33  **-s**, **--stars**=X
    34     Only displays with at least X stars. The default is zero.
    35  
    36  # EXAMPLES
    37  
    38  ## Search Docker Hub for ranked images
    39  
    40  Search a registry for the term 'fedora' and only display those images
    41  ranked 3 or higher:
    42  
    43      $ docker search -s 3 fedora
    44      NAME                  DESCRIPTION                                    STARS OFFICIAL  AUTOMATED
    45      mattdm/fedora         A basic Fedora image corresponding roughly...  50
    46      fedora                (Semi) Official Fedora base image.             38
    47      mattdm/fedora-small   A small Fedora image on which to build. Co...  8
    48      goldmann/wildfly      A WildFly application server running on a ...  3               [OK]
    49  
    50  ## Search Docker Hub for automated images
    51  
    52  Search Docker Hub for the term 'fedora' and only display automated images
    53  ranked 1 or higher:
    54  
    55      $ docker search --automated -s 1 fedora
    56      NAME               DESCRIPTION                                     STARS OFFICIAL  AUTOMATED
    57      goldmann/wildfly   A WildFly application server running on a ...   3               [OK]
    58      tutum/fedora-20    Fedora 20 image with SSH access. For the r...   1               [OK]
    59  
    60  # HISTORY
    61  April 2014, Originally compiled by William Henry (whenry at redhat dot com)
    62  based on docker.com source material and internal work.
    63  June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
    64  April 2015, updated by Mary Anthony for v2 <mary@docker.com>
    65