Getting Nginx deb packages from nginx.org #18859
Unanswered
chesnovskii
asked this question in
Request Help
Replies: 2 comments 2 replies
-
|
we don't have a deb datasource yet, so not possible yet |
Beta Was this translation helpful? Give feedback.
2 replies
-
|
There is a datasource for debian now, but i still got issues with the nginx repository which i don't know is an issue with their repository (the official nginx not repology) or with renovate. Running renovate 42.x in local docker gets me
// ...
"customManagers": [
{
"customType": "regex",
"managerFilePatterns": [
"/^Dockerfile$/"
],
"matchStrings": [
"#\\s*renovate:\\s*?(suite=(?<suite>.*?))?\\s*depName=(?<depName>.*?)?\\sENV .*?_VERSION=\"(?<currentValue>.*)\""
],
"registryUrlTemplate": "https://deb.debian.org/debian?suite={{#if suite }}{{suite}}{{else}}stable{{/if}}&components=main,contrib,non-free&binaryArch=amd64",
"datasourceTemplate": "deb"
}
],
"packageRules": [
{
"matchDatasources": [
"deb"
],
"matchPackageNames": [
"nginx"
],
"registryUrls": [
"http://nginx.org/packages/mainline/debian?suite=bookworm&components=nginx&binaryArch=amd64"
]
}
]
// ...
# ...
# renovate: suite=bookworm depName=nginx
ENV NGINX_VERSION="1.29.0-1~bookworm"
# ... |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi!
Could you please tell me if there is any way to get updates from the
https://nginx.org/packages/debianrepo?I try to use
repologydata source, but it looks like I've got packages only fromhttps://deb.debian.org/debian.Dockerfile example
renovate.json example
Beta Was this translation helpful? Give feedback.
All reactions