docker search 查看 tag版本

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 ubuntu centos
ubuntu:14.04
ubuntu:16.04
ubuntu:17.04
ubuntu:latest
ubuntu:trusty-20171117
...
centos:6
centos:6.6
centos:6.7
centos:6.8
...

原文鏈接: 2017/12/07/docker search時列出tag/

reference:
https://stackoverflow.com/questions/24481564/how-can-i-find-a-docker-image-with-a-specific-tag-in-docker-registry-on-the-dock/34054903#34054903

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章