|
@@ -5,7 +5,7 @@
|
|
|
docker-search - Search the docker index for images
|
|
|
|
|
|
# SYNOPSIS
|
|
|
-**docker search** **--no-trunc**[=*false*] **-t**|**--trusted**[=*false*]
|
|
|
+**docker search** **--no-trunc**[=*false*] **--automated**[=*false*]
|
|
|
**-s**|**--stars**[=*0*] TERM
|
|
|
|
|
|
# DESCRIPTION
|
|
@@ -13,7 +13,7 @@ docker-search - Search the docker index for images
|
|
|
Search an index for an image with that matches the term TERM. The table
|
|
|
of images returned displays the name, description (truncated by default),
|
|
|
number of stars awarded, whether the image is official, and whether it
|
|
|
-is trusted.
|
|
|
+is automated.
|
|
|
|
|
|
# OPTIONS
|
|
|
**--no-trunc**=*true*|*false*
|
|
@@ -23,8 +23,8 @@ is trusted.
|
|
|
Only displays with at least NUM (integer) stars. I.e. only those images
|
|
|
ranked >=NUM.
|
|
|
|
|
|
-**-t**, **--trusted**=*true*|*false*
|
|
|
- When true only show trusted builds. The default is false.
|
|
|
+**--automated**=*true*|*false*
|
|
|
+ When true only show automated builds. The default is false.
|
|
|
|
|
|
# EXAMPLE
|
|
|
|
|
@@ -34,19 +34,19 @@ Search the registry for the term 'fedora' and only display those images
|
|
|
ranked 3 or higher:
|
|
|
|
|
|
$ sudo docker search -s 3 fedora
|
|
|
- NAME DESCRIPTION STARS OFFICIAL TRUSTED
|
|
|
+ NAME DESCRIPTION STARS OFFICIAL AUTOMATED
|
|
|
mattdm/fedora A basic Fedora image corresponding roughly... 50
|
|
|
fedora (Semi) Official Fedora base image. 38
|
|
|
mattdm/fedora-small A small Fedora image on which to build. Co... 8
|
|
|
goldmann/wildfly A WildFly application server running on a ... 3 [OK]
|
|
|
|
|
|
-## Search the registry for trusted images
|
|
|
+## Search the registry for automated images
|
|
|
|
|
|
-Search the registry for the term 'fedora' and only display trusted images
|
|
|
+Search the registry for the term 'fedora' and only display automated images
|
|
|
ranked 1 or higher:
|
|
|
|
|
|
$ sudo docker search -s 1 -t fedora
|
|
|
- NAME DESCRIPTION STARS OFFICIAL TRUSTED
|
|
|
+ NAME DESCRIPTION STARS OFFICIAL AUTOMATED
|
|
|
goldmann/wildfly A WildFly application server running on a ... 3 [OK]
|
|
|
tutum/fedora-20 Fedora 20 image with SSH access. For the r... 1 [OK]
|
|
|
|