diff --git a/renovate-compose.yml b/renovate-compose.yml new file mode 100644 index 0000000..50dd014 --- /dev/null +++ b/renovate-compose.yml @@ -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: "" + 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" + ]