설명
이미지 검색 - 이미지는 STARS가 많은 것과 OFFICIAL 마크가 붙은 걸 사용하자
사용법
$ docker search [OPTIONS] TERM
Bash
복사
옵션
Option | Short | Default | Description |
-f, --filter | Filter output based on conditions provided | ||
--format | Pretty-print search using a Go template | ||
--limit | Max number of search results | ||
--no-trunc | Don't truncate output |
The filtering flag (-f or --filter) format is a key=value pair. If there is more than one filter, then pass multiple flags (e.g. --filter is-official=true --filter stars=3).
The currently supported filters are:
•
stars (int - number of stars the image has)
•
is-automated (boolean - true or false) - is the image automated or not (deprecated)
•
is-official (boolean - true or false) - is the image official or not
예시
# docker search ubuntu
NAME DESCRIPTION STARS OFFICIAL
ubuntu Ubuntu is a Debian-based Linux operating sys… 17178 [OK]
ubuntu-upstart DEPRECATED, as is Upstart (find other proces… 115 [OK]
websphere-liberty WebSphere Liberty multi-architecture images … 299 [OK]
open-liberty Open Liberty multi-architecture images based… 65 [OK]
ubuntu-debootstrap DEPRECATED; use "ubuntu" instead 52 [OK]
neurodebian NeuroDebian provides neuroscience research s… 111 [OK]
ubuntu/nginx Nginx, a high-performance reverse proxy & we… 115
ubuntu/squid Squid is a caching proxy for the Web. Long-t… 92
ubuntu/cortex Cortex provides storage for Prometheus. Long… 4
ubuntu/prometheus Prometheus is a systems and service monitori… 65
ubuntu/kafka Apache Kafka, a distributed event streaming … 50
ubuntu/apache2 Apache, a secure & extensible open-source HT… 74
ubuntu/bind9 BIND 9 is a very flexible, full-featured DNS… 94
ubuntu/zookeeper ZooKeeper maintains configuration informatio… 13
ubuntu/mysql MySQL open source fast, stable, multi-thread… 64
ubuntu/postgres PostgreSQL is an open source object-relation… 39
ubuntu/redis Redis, an open source key-value store. Long-… 22
ubuntu/jre Distroless Java runtime based on Ubuntu. Lon… 15
ubuntu/dotnet-aspnet Chiselled Ubuntu runtime image for ASP.NET a… 22
ubuntu/grafana Grafana, a feature rich metrics dashboard & … 11
ubuntu/dotnet-deps Chiselled Ubuntu for self-contained .NET & A… 16
ubuntu/memcached Memcached, in-memory keyvalue store for smal… 5
ubuntu/cassandra Cassandra, an open source NoSQL distributed … 2
ubuntu/dotnet-runtime Chiselled Ubuntu runtime image for .NET apps… 20
ubuntu/prometheus-alertmanager Alertmanager handles client alerts from Prom… 9
Bash
복사
# 필터 검색
$ docker search --filter is-official=true --filter stars=3 busybox
NAME DESCRIPTION STARS OFFICIAL
busybox Busybox base image. 325 [OK]
Bash
복사