My team builds a couple of Alpine images based on the latest and next-most-recent versions and use a command like the following in our automation script to discovery the current tags:
$ curl -s https://registry.hub.docker.com/v1/repositories/alpine/tags | head
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 140 100 140 0 0 897 0 --:--:-- --:--:-- --:--:-- 891
<html>
<head><title>410 Gone</title></head>
<body>
<center><h1>410 Gone</h1></center>
<hr><center>openresty</center>
</body>
</html>
$
I don’t have an example of how this is supposed to look but it’s not working presently. Our build process runs at least once a day and I know this has been working. This is a similar technique used in How can I list all tags for a Docker image on a remote registry?
What’s wrong? Will the command work soon? Is there an alternative command? Is there a better place to contact about this issue?