diff --git a/lib/modules/datasource/docker/index.ts b/lib/modules/datasource/docker/index.ts index c258891cda89a4c845b9799ae75a6172d2e6695f..6c539394ad31ba1bfb17f741573a5f9ca0661963 100644 --- a/lib/modules/datasource/docker/index.ts +++ b/lib/modules/datasource/docker/index.ts @@ -57,12 +57,15 @@ export async function getAuthHeaders( apiCheckUrl = `${registryHost}/v2/` ): Promise<OutgoingHttpHeaders | null> { try { - // use json request, as this will be cached for tags, so it returns json - // TODO: add cache test - const apiCheckResponse = await http.getJson(apiCheckUrl, { + const options = { throwHttpErrors: false, noAuth: true, - }); + }; + const apiCheckResponse = apiCheckUrl.endsWith('/v2/') + ? await http.get(apiCheckUrl, options) + : // use json request, as this will be cached for tags, so it returns json + // TODO: add cache test + await http.getJson(apiCheckUrl, options); if (apiCheckResponse.statusCode === 200) { logger.debug({ apiCheckUrl }, 'No registry auth required');