minor changes

This commit is contained in:
2025-11-10 23:25:08 +01:00
parent 82f6ceb4c5
commit 29b8c8fbd2

24
renovate-compose.yml Normal file
View File

@@ -0,0 +1,24 @@
version: "3.8"
services:
renovate:
image: renovate/renovate:latest
container_name: renovate
restart: unless-stopped
environment:
TZ: Europe/Berlin
LOG_LEVEL: info
RENOVATE_ENDPOINT: https://gitea.example.com/api/v1
RENOVATE_TOKEN: "<GITEA_PERSONAL_ACCESS_TOKEN>"
RENOVATE_PLATFORM: gitea
RENOVATE_AUTODISCOVER: "true"
GIT_AUTHOR_NAME: Renovate Bot
GIT_AUTHOR_EMAIL: renovate@example.com
volumes:
- /opt/docker/renovate:/usr/src/app/config
command:
[
"renovate",
"--schedule=every day at 03:00",
"--onboarding=true"
]