#!/bin/sh
# $Id: docker.io-tags,v 1.1 2018/12/10 06:50:54 friedman Exp $

wget -q -O - https://registry.hub.docker.com/v1/repositories/"$1"/tags |
    jq -r '.[].name'

# eof
