Auto Merge of PR 43 - renovate-self-hosted-config_2025-09-28T17-58-27
Renovate / renovate (push) Successful in 51s
Auto-Unseal for Vault / Unseal Vault (push) Successful in 29s

Merged by Trez.One
This commit was merged in pull request #43.
This commit is contained in:
2025-09-28 18:09:41 -04:00
+26
View File
@@ -0,0 +1,26 @@
module.exports = {
extends: ["local>trez/renovate-config"],
hostRules: [
{
description: "Docker Hub authentication",
hostType: "docker",
matchHost: "docker.io",
username: process.env.DOCKER_HUB_USER,
password: process.env.DOCKER_HUB_PASS,
},
{
description: "GitHub Container Registry (GHCR)",
hostType: "docker",
matchHost: "ghcr.io",
username: process.env.GHCR_USER,
password: process.env.GHCR_TOKEN,
},
{
description: "Self-hosted Gitea Docker Registry",
hostType: "docker",
matchHost: "git.trez.wtf",
username: process.env.GITEA_BOT_USER,
password: process.env.GITEA_BOT_PASS,
},
],
};