Access to Download Pega Images

Hi ,

I would like to run a command that shows me the latest version of PEGA images , so that I know what to download.

Is there a command or documentation that tells me the latest available images for the various PEGA images. For example is there a newer version than search-n-reporting-service:1.21.1?

I just ran the following command but would like to know if there is a newer image:

docker pull pega-docker.downloads.pega.com/platform-services/search-n-reporting-service:1.21.1

@MaryAnnF the main documentation is under Pega-provided Docker images

I could find no way to narrow down the Search Service list from the main page.

@MaryAnnF

The Artifactory API can be used to check what images and tags are available.

curl -u : https://pega-docker.downloads.pega.com/v2/_catalog

https://pega-docker.downloads.pega.com/v2/platform/pega/tags/list

Piping the output to jq to format it is recommended.

Since the API is a bit cumbersome I recently built a site to make it easy to browse images: https://dockerimages.pegatds.net. Using this site you would just click on search-n-reporting-service to see a list of tags in your browser.