I need to get all repositories with a provided name from DockerHub. I already tried various ways to get to next page of results received for the following call:
curl -k -H "Accept: application/json" -X GET https://index.docker.io/v1/search?q=sonarqube
Options which haven't worked:
curl -k -H "Accept: application/json" -X GET https://index.docker.io/v1/search?q=sonarqube&n=25&page=2
curl -k -H "Accept: application/json" -X GET https://index.docker.io/v1/search?q=sonarqube&page_size=25&page=2
Am I missing anything, or is there an alternative to get these results?