Get tags for docker image without organization
To get a docker image's tags using the docker hub api: curl -sL https://hub.docker.com/v2/repositories/<org>/<name>/tags I pipe that into | jq and extract what I need. However some ima...