Compare commits

...

2 Commits

Author SHA1 Message Date
b352f5a4f7 chore(deps): update dependency docker/compose to v2.40.2
Some checks failed
Build / build-arm64 (pull_request) Has been cancelled
Build / build-amd64 (pull_request) Has been cancelled
2025-10-22 22:17:57 +02:00
5004ee907c fix(renovate): adapt customManager configuration
Some checks failed
Build / build-arm64 (push) Has been cancelled
Build / build-amd64 (push) Has been cancelled
2025-10-22 22:17:36 +02:00
2 changed files with 15 additions and 7 deletions

View File

@@ -1,6 +1,6 @@
# DC_VERSION # DC_VERSION
# Only required to install a specify version # Only required to install a specify version
DC_VERSION?=v2.40.0 # renovate: datasource=github-releases depName=docker/compose DC_VERSION?=v2.40.2 # renovate: datasource=github-releases depName=docker/compose
# CONTAINER_RUNTIME # CONTAINER_RUNTIME
# The CONTAINER_RUNTIME variable will be used to specified the path to a container runtime. This is needed to start and # The CONTAINER_RUNTIME variable will be used to specified the path to a container runtime. This is needed to start and

View File

@@ -2,13 +2,17 @@
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"customManagers": [ "customManagers": [
{ {
"fileMatch": ["^README\\.md$"], "customType": "regex",
"fileMatch": [
"^README\\.md$"
],
"matchStrings": [ "matchStrings": [
"IMAGE_VERSION=(?<currentValue>.*)" "IMAGE_VERSION=(?<currentValue>.*)"
], ],
"depNameTemplate": "volker.raschek/docker-compose",
"datasourceTemplate": "docker", "datasourceTemplate": "docker",
"registryUrlTemplate": "https://git.cryptic.systems" "depNameTemplate": "volker.raschek/docker-compose",
"lookupNameTemplate": "git.cryptic.systems/volker.raschek/docker-compose",
"versioningTemplate": "semver"
} }
], ],
"extends": [ "extends": [
@@ -23,8 +27,12 @@
"renovate/automerge" "renovate/automerge"
], ],
"automerge": true, "automerge": true,
"matchPackageNames": [ "docker-compose" ], "matchPackageNames": [
"matchManagers": [ "regex" ] "docker-compose"
],
"matchManagers": [
"regex"
]
} }
] ]
} }