docker-search
search Docker Hub for container images
TLDR
Search Docker Hub
$ docker search [term]
Search with limit$ docker search --limit [25] [term]
Filter official images$ docker search -f is-official=true [term]
Filter automated builds$ docker search -f is-automated=true [term]
Filter by stars$ docker search -f stars=[100] [term]
SYNOPSIS
docker search [options] term
DESCRIPTION
docker search searches Docker Hub for images. Returns image name, description, stars, and official/automated status. This command queries the public Docker Hub registry to help discover available images. Results can be filtered by official status, automation, or popularity to find trusted images.
PARAMETERS
-f, --filter filter
Filter output based on conditions.--format string
Format output using Go template.--limit int
Max number of results (default 25).--no-trunc
Don't truncate output.
SEE ALSO
docker-pull(1), docker-images(1)
