List PEGA docker image versions in PEGA docker registry

Is there a way to list all PEGA docker image versions in the docker registry at pega-docker.downloads.pega.com?

I do have an user and access token and I am able to pull individual images, e.g.

docker pull pega-docker.downloads.pega.com/platform/pega:8.5.1

but how would I list all the available image versions in the registry.

There is a JFROG artifactory site at pega-docker.downloads.pega.com but it does not allow to login with username and access token

@IngoM783 Facing similar issue. Using pega provided UserID and access key unable to log in

Error response from daemon: Get https://pega-docker.downloads.pega.com/v2/: unknown: Bad credentials

Query is possible using curl

e.g.

curl -u <user>:<access-token> https://pega-docker.downloads.pega.com/v2/_catalog
{
  "repositories": [
   ...
    "platform/pega",
   ...
  ]
}
curl -u <user>:<access-token> https://pega-docker.downloads.pega.com/v2/platform/pega/tags/list
{
  "name": "platform/pega",
  "tags": [
    ...
    "8.5.4-20210730",
    "8.6.0",
    "8.6.0-20210715",
    "8.6.0-20210716",
    ...
  ]
}