forked from runtipi/runtipi-appstore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.js
34 lines (34 loc) · 967 Bytes
/
renovate.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
module.exports = {
extends: ["config:base"],
onboarding: false,
requireConfig: false,
rebaseWhen: "conflicted",
gitIgnoredAuthors: ["[email protected]"],
dependencyDashboard: true,
enabledManagers: ["docker-compose", "dockerfile"],
hostRules: [
{
matchHost: "index.docker.io",
hostType: "docker",
username: process.env.DOCKERHUB_USERNAME,
password: process.env.DOCKERHUB_TOKEN,
},
{
matchHost: "docker.io",
concurrentRequestLimit: 2,
},
],
packageRules: [
{
packagePatterns: ["^ghcr.io\\/linuxserver\\/"],
versionScheme: "regex:^(?<compatibility>.*?)-(?<major>v?\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)[\\.-]*r?(?<build>\\d+)*-*r?(?<release>\\w+)*"
},
{
managers: ["docker-compose", "dockerfile"],
packagePatterns: [
"^([^\\/]+\\/)?(mysql|mariadb|mongodb|mongo|postgres|redis|immich-.*)(:|$)",
],
enabled: false,
},
],
};