github.com/justincormack/cli@v0.0.0-20201215022714-831ebeae9675/man/src/search.md (about)

     1  Search Docker Hub for images that match the specified `TERM`. The table
     2  of images returned displays the name, description (truncated by default), number
     3  of stars awarded, whether the image is official, and whether it is automated.
     4  
     5  *Note* - Search queries will only return up to 25 results
     6  
     7  ## Filter
     8  
     9     Filter output based on these conditions:
    10     - stars=<numberOfStar>
    11     - is-automated=(true|false)
    12     - is-official=(true|false)
    13  
    14  # EXAMPLES
    15  
    16  ## Search Docker Hub for ranked images
    17  
    18  Search a registry for the term 'fedora' and only display those images
    19  ranked 3 or higher:
    20  
    21      $ docker search --filter=stars=3 fedora
    22      NAME                  DESCRIPTION                                    STARS OFFICIAL  AUTOMATED
    23      mattdm/fedora         A basic Fedora image corresponding roughly...  50
    24      fedora                (Semi) Official Fedora base image.             38
    25      mattdm/fedora-small   A small Fedora image on which to build. Co...  8
    26      goldmann/wildfly      A WildFly application server running on a ...  3               [OK]
    27  
    28  ## Search Docker Hub for automated images
    29  
    30  Search Docker Hub for the term 'fedora' and only display automated images
    31  ranked 1 or higher:
    32  
    33      $ docker search --filter=is-automated=true --filter=stars=1 fedora
    34      NAME               DESCRIPTION                                     STARS OFFICIAL  AUTOMATED
    35      goldmann/wildfly   A WildFly application server running on a ...   3               [OK]
    36      tutum/fedora-20    Fedora 20 image with SSH access. For the r...   1               [OK]