How can I list all tags of a Docker image on a remote Docker registry using the CLI (preferred) or curl?
Preferably without pulling all versions from the remote regi
I've managed to get it working using curl:
curl -u : https://myrepo.example/v1/repositories///tags
Note that image_name should not contain user details etc. For example if you're pushing image named myrepo.example/username/x then image_name should be x.
image_name
myrepo.example/username/x
x