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**
|
2016-05-20 07:41:28 -04:00
|
|
|
[**-f**|**--filter**[=*[]*]]
|
2014-10-15 17:14:12 -04:00
|
|
|
[**--help**]
|
2016-06-01 16:38:14 -04:00
|
|
|
[**--limit**[=*LIMIT*]]
|
2015-12-23 09:37:06 -05:00
|
|
|
[**--no-trunc**]
|
2014-06-30 22:58:04 -04:00
|
|
|
TERM
|
2014-04-16 14:07:55 -04:00
|
|
|
|
|
|
|
# DESCRIPTION
|
|
|
|
|
2015-07-20 11:46:50 -04:00
|
|
|
Search Docker Hub for images that match the specified `TERM`. The table
|
2015-04-01 15:20:59 -04:00
|
|
|
of images returned displays the name, description (truncated by default), number
|
|
|
|
of stars awarded, whether the image is official, and whether it 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
|
2016-05-20 07:41:28 -04:00
|
|
|
|
|
|
|
**-f**, **--filter**=[]
|
|
|
|
Filter output based on these conditions:
|
|
|
|
- stars=<numberOfStar>
|
|
|
|
- is-automated=(true|false)
|
|
|
|
- is-official=(true|false)
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2014-10-15 17:14:12 -04:00
|
|
|
**--help**
|
|
|
|
Print usage statement
|
|
|
|
|
2016-06-01 16:38:14 -04:00
|
|
|
**--limit**=*LIMIT*
|
|
|
|
Maximum returned search results. The default is 25.
|
|
|
|
|
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
|
|
|
# EXAMPLES
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2015-04-01 15:20:59 -04:00
|
|
|
## Search Docker Hub for ranked images
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2015-04-01 15:20:59 -04:00
|
|
|
Search a registry for the term 'fedora' and only display those images
|
2014-04-16 14:07:55 -04:00
|
|
|
ranked 3 or higher:
|
|
|
|
|
2016-05-20 07:41:28 -04:00
|
|
|
$ docker search --filter=stars=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]
|
|
|
|
|
2015-04-01 15:20:59 -04:00
|
|
|
## Search Docker Hub for automated images
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2015-04-01 15:20:59 -04:00
|
|
|
Search Docker Hub for the term 'fedora' and only display automated images
|
2014-04-16 14:07:55 -04:00
|
|
|
ranked 1 or higher:
|
|
|
|
|
2016-05-20 07:41:28 -04:00
|
|
|
$ docker search --filter=is-automated=true --filter=stars=1 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>
|
2015-04-01 15:20:59 -04:00
|
|
|
April 2015, updated by Mary Anthony for v2 <mary@docker.com>
|
2016-05-20 07:41:28 -04:00
|
|
|
April 2016, updated by Vincent Demeester <vincent@sbr.pm>
|
2015-04-01 15:20:59 -04:00
|
|
|
|