Hello everyone. I am trying to get a list of docke...
# platform-toolbox
m
Hello everyone. I am trying to get a list of docker image tags and it seems the Docker API does not work properly with non-oficial images.
a
What problem are you encountering? Just tried listing tags for a random repository
Copy code
$ wget -q -O - "<https://hub.docker.com/v2/namespaces/clearlinux/repositories/iperf/tags?page_size=100>" | grep -o '"name": *"[^"]*' | grep -o '[^"]*$'
latest
3
3.13
3.12
3.10
3.10.1
3.8
3.8.1
3.7
3.6
https://stackoverflow.com/a/39454426
m
Hello Andrew, thank you for reaching out. That's correct, I had some replies. I did not have the chance to test again today, but yesterday I was still getting an error stating the 'namespace does not exist'
Andrew, I just tested using your line of code and it works. Super thanks for reply to my post.🙌