chore: update renovate.json for custom registry

This commit is contained in:
2025-10-07 21:10:44 +10:00
parent b8a1792db9
commit 41458d1442
2 changed files with 10 additions and 5 deletions

View File

@ -7,13 +7,18 @@
"ignoreDeps": ["postgres"],
"regexManagers": [
{
"fileMatch": ["^.*\\.yml$", "^.*\\.yaml$"],
"fileMatch": ["group_vars/all.yml"],
"matchStrings": [
"^(\\s*\\w+_latest_image:\\s*\"?)(?<currentValue>[^\\s\"]+)(\"?)"
],
"datasourceTemplate": "docker",
"depNameTemplate": "{{ currentValue }}",
"versioningTemplate": "docker"
"depNameTemplate": "{{ currentValue | regexReplace('@sha256:.*$', '') }}",
"versioningTemplate": "docker",
"extractVersionTemplate": "{{ currentValue | regexReplace('.*:(.*)$', '$1') }}",
"registryUrls": [
"https://index.docker.io/v2/",
"https://git.comprofix.com/v2/"
]
}
]
}