2014-04-16 14:07:55 -04:00
|
|
|
% DOCKER(1) Docker User Manuals
|
2014-06-30 22:58:04 -04:00
|
|
|
% Docker Community
|
|
|
|
% JUNE 2014
|
2014-04-16 14:07:55 -04:00
|
|
|
# NAME
|
2014-06-30 22:58:04 -04:00
|
|
|
docker-search - Search the Docker Hub for images
|
2014-04-16 14:07:55 -04:00
|
|
|
|
|
|
|
# SYNOPSIS
|
2014-06-30 22:58:04 -04:00
|
|
|
**docker search**
|
|
|
|
[**--automated**[=*false*]]
|
2014-10-15 17:14:12 -04:00
|
|
|
[**--help**]
|
2014-06-30 22:58:04 -04:00
|
|
|
[**--no-trunc**[=*false*]]
|
|
|
|
[**-s**|**--stars**[=*0*]]
|
|
|
|
TERM
|
2014-04-16 14:07:55 -04:00
|
|
|
|
|
|
|
# DESCRIPTION
|
|
|
|
|
|
|
|
Search an index for an image with that matches the term TERM. The table
|
|
|
|
of images returned displays the name, description (truncated by default),
|
2014-04-17 11:36:58 -04:00
|
|
|
number of stars awarded, whether the image is official, and whether it
|
2014-06-02 14:48:58 -04:00
|
|
|
is automated.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2015-01-14 21:03:09 -05:00
|
|
|
*Note* - Search queries will only return up to 25 results
|
|
|
|
|
2014-04-16 14:07:55 -04:00
|
|
|
# OPTIONS
|
2014-06-30 22:58:04 -04:00
|
|
|
**--automated**=*true*|*false*
|
|
|
|
Only show automated builds. The default is *false*.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2014-10-15 17:14:12 -04:00
|
|
|
**--help**
|
|
|
|
Print usage statement
|
|
|
|
|
2014-06-30 22:58:04 -04:00
|
|
|
**--no-trunc**=*true*|*false*
|
|
|
|
Don't truncate output. The default is *false*.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2014-06-30 22:58:04 -04:00
|
|
|
**-s**, **--stars**=0
|
|
|
|
Only displays with at least x stars
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2014-06-30 22:58:04 -04:00
|
|
|
# EXAMPLES
|
2014-04-16 14:07:55 -04:00
|
|
|
|
|
|
|
## Search the registry for ranked images
|
|
|
|
|
|
|
|
Search the registry for the term 'fedora' and only display those images
|
|
|
|
ranked 3 or higher:
|
|
|
|
|
|
|
|
$ sudo docker search -s 3 fedora
|
2014-06-02 14:48:58 -04:00
|
|
|
NAME DESCRIPTION STARS OFFICIAL AUTOMATED
|
2014-04-16 14:07:55 -04:00
|
|
|
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]
|
|
|
|
|
2014-06-02 14:48:58 -04:00
|
|
|
## Search the registry for automated images
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2014-06-02 14:48:58 -04:00
|
|
|
Search the registry for the term 'fedora' and only display automated images
|
2014-04-16 14:07:55 -04:00
|
|
|
ranked 1 or higher:
|
|
|
|
|
|
|
|
$ sudo docker search -s 1 -t fedora
|
2014-06-02 14:48:58 -04:00
|
|
|
NAME DESCRIPTION STARS OFFICIAL AUTOMATED
|
2014-04-16 14:07:55 -04:00
|
|
|
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]
|
|
|
|
|
|
|
|
# HISTORY
|
|
|
|
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
2014-07-01 20:30:25 -04:00
|
|
|
based on docker.com source material and internal work.
|
2014-07-02 21:07:42 -04:00
|
|
|
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|