% docker images REPOSITORY TAG IMAGE ID CREATED SIZE docker/getting-started latest b1bcd61774d8 10 days ago 27.2MB hello-world latest 18e5af790473 8 weeks ago 9.14kB # 解释 REPOSITORY 镜像仓库源 TAG 镜像的标签 # 可选项 -a, --all Show all images (default hides intermediate images) -q, --quiet Only show image IDs
docker search:镜像搜索命令
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
% docker search mysql NAME DESCRIPTION STARS OFFICIAL AUTOMATED mysql MySQL is a widely used, open-source relation… 11712 [OK] mariadb MariaDB Server is a high performing open sou… 4464 [OK] mysql/mysql-server Optimized MySQL Server Docker images. Create… 870 [OK] # 可选项 -f, --filter filter Filter output based on conditions provided --format string Pretty-print search using a Go template --limit int Max number of search results (default 25) --no-trunc Don't truncate output 例如:docker search mysql --filter=stars=3000 --> 表示stars>=3000的结果 % docker search mysql --filter=stars=3000 NAME DESCRIPTION STARS OFFICIAL AUTOMATED mysql MySQL is a widely used, open-source relation… 11712 [OK] mariadb MariaDB Server is a high performing open sou… 4464 [OK]
Untagged: hello-world:latest Untagged: hello-world@sha256:cc15c5b292d8525effc0f89cb299f1804f3a725c8d05e158653a563f15e4f685 Deleted: sha256:18e5af7904737ba5ef7fbbd7d59de5ebe6c4437907bd7fc436bf9b3ef3149ea9 # 可选项 -f, --force Force removal of the image --no-prune Do not delete untagged parents