LinuxCommandLibrary

docker-search

search Docker Hub for container images

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. 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

> TERMINAL_GEAR

Curated for the Linux community

Copied to clipboard

> TERMINAL_GEAR

Curated for the Linux community