LinuxCommandLibrary

docker-search

TLDR

Search Docker Hub

$ docker search [term]
copy
Search with limit
$ docker search --limit [25] [term]
copy
Filter official images
$ docker search -f is-official=true [term]
copy
Filter automated builds
$ docker search -f is-automated=true [term]
copy
Filter by stars
$ docker search -f stars=[100] [term]
copy

SYNOPSIS

docker search [options] term

DESCRIPTION

docker search searches Docker Hub for images. Returns image name, description, stars, and official/automated status.

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

Copied to clipboard