Files
Pickup-Config/renovate-compose.yml
2025-11-10 23:25:08 +01:00

25 lines
634 B
YAML

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"
]