jjuarez / docker-registry-list

List the tags in a docker registry

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

docker-registry-list

Simple script to list the available tags for a given image name

Usage

./docker-registry-list.py -h
usage: docker-registry-list.py [-h] [-t TOKEN] [-i INDEX_URL] [-a AUTH_URL]
                               name

positional arguments:
  name                  Name of image to list versions of such as alpine or curlimages/curl

optional arguments:
  -h, --help            show this help message and exit
  -t TOKEN, --token TOKEN
                        Auth token to use (automatically fetched if not
                        specified)
  -i INDEX_URL, --index-url INDEX_URL
  -a AUTH_URL, --auth-url AUTH_URL
  -u USERNAME, --username USERNAME  For private repositories
  -p PASSWORD, --password PASSWORD

Example

./docker-registry-list.py alpine
{
  "name": "library/alpine",
  "tags": [
    "2.6",
    "2.7",
    "3.1",
    "3.2",
    "3.3",
    "3.4",
    "3.5",
    "3.6",
    "3.7",
    "edge",
    "latest"
  ]
}

About

List the tags in a docker registry


Languages

Language:Python 100.0%