Hi Team,
I have installed the trial version Nexus 3.70.2 and i and trying to find a way to list all the docker images for a particular repository.
I am unable to get any API for the same.
It will be really helpful if i can get some information about the same.
Have you tried using the components API to list the content of a given repository? If you want to collate all of the contained images/files/whatever within a repo., you can submit a GET request against {your-host}/service/rest/v1/components?repository={your-repository}. You’ll likely need to pass in the continuation token to paginate through the repo.'s multiple pages of results, which can be done by appending &continuationToken={token-value} to the GET on subsequent requests. As you paginate, you can export each of the images to a .csv or some such file.