Latest web development tutorials

Docker search command

Docker command Daquan Docker command Daquan


docker search: Find a mirror from Docker Hub

grammar

docker search [OPTIONS] TERM

OPTIONS Description:

  • --automated: lists only automated build types of images;

  • --no-trunc: display the full description of the mirror;

  • -s: Lists of collections is not less than the specified value of the mirror.

Examples

Find all mirrors from Docker Hub name contains java, and a collection of greater than 10 image

w3big@w3big:~$ 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]

Docker command Daquan Docker command Daquan