docker查看镜像的tag列表

  • 分类: Docker
  • 发表日期:2022-03-13 10:44:00
  • 最后修改:2022-04-24 10:44:00

docker search 无法支持此需求,需要定义shell脚本实现。

新建脚本文件 docker-show-repo-tag.sh

#!/bin/sh
#
# Simple script that will display docker repository tags.
#
# Usage:
#   $ docker-show-repo-tags.sh ubuntu centos
for Repo in $* ; do
  curl -s -S "https://registry.hub.docker.com/v2/repositories/library/$Repo/tags/" | \
    sed -e 's/,/,\n/g' -e 's/\[/\[\n/g' | \
    grep '"name"' | \
    awk -F\" '{print $4;}' | \
    sort -fu | \
    sed -e "s/^/${Repo}:/"
done

使用

// 授予脚本执行权限
$ chmod 744 ./docker-show-repo-tags.sh
// 使用
$ ./docker-show-repo-tags.sh centos
centos:7
centos:7.9.2009
centos:8.4.2105
centos:centos6
centos:centos6.10
centos:centos7
centos:centos7.9.2009
centos:centos8
centos:centos8.4.2105
centos:latest

  • 官方认证的仓库url
    https://registry.hub.docker.com/v2/repositories/library/$Repo/tags/
    $Repo
    eg: ubuntu

  • 个人仓库url
    https://registry.hub.docker.com/v2/repositories/$User/$Repo/tags/
    $User/$Repo
    eg: jenkins/jenkins

 

转自:docker search时列出tag

 

post
2020年12月26日 19:59 原创
post
2021年2月24日 18:06 原创 草稿

记一次elasticsearch项目的部署

post
2021年3月25日 22:09 原创
post
2021年4月15日 20:59 原创

0 评论

大哥整点话呗~