HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

docker search — Search for Docker images on Docker Hub. More information: <https://docs.docker.com/reference/cli/doc

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandimagesdockersearchclidocker searchfor

Problem

How to use the docker search command: Search for Docker images on Docker Hub. More information: <https://docs.docker.com/reference/cli/docker/search/>.

Solution

docker search — Search for Docker images on Docker Hub. More information: <https://docs.docker.com/reference/cli/docker/search/>.

Search for Docker images by name or keyword:
docker search {{keyword}}


Search for images and only show official ones:
docker search {{[-f|--filter]}} is-official=true {{keyword}}


Search for images and only show automated builds:
docker search {{[-f|--filter]}} is-automated=true {{keyword}}


Search for images with a minimum number of stars:
docker search {{[-f|--filter]}} stars={{number}} {{keyword}}


Limit the number of results:
docker search --limit {{number}} {{keyword}}


Customize the output format:
docker search {{[-f|--format]}} "{{.Name}}: {{.Description}}" {{keyword}}

Code Snippets

Search for Docker images by name or keyword

docker search {{keyword}}

Search for images and only show official ones

docker search {{[-f|--filter]}} is-official=true {{keyword}}

Search for images and only show automated builds

docker search {{[-f|--filter]}} is-automated=true {{keyword}}

Search for images with a minimum number of stars

docker search {{[-f|--filter]}} stars={{number}} {{keyword}}

Limit the number of results

docker search --limit {{number}} {{keyword}}

Context

tldr-pages: common/docker search

Revisions (0)

No revisions yet.