Moving Renovate from Rinoa to Rikku.
Docker Compose Deployment / Check and Create PR (push) Successful in 57s
Docker Compose Deployment / Generate list of added/modified/deleted services (push) Successful in 21s
Docker Compose Deployment / Docker Compose Dry Run (push) Failing after 46s
Docker Compose Deployment / Update README & Generate List of Modified Services (push) Has been skipped
Docker Compose Deployment / PR Merge (push) Has been skipped
Docker Compose Deployment / Docker Compose Deployment (push) Has been skipped
Docker Compose Deployment / Check and Create PR (push) Successful in 57s
Docker Compose Deployment / Generate list of added/modified/deleted services (push) Successful in 21s
Docker Compose Deployment / Docker Compose Dry Run (push) Failing after 46s
Docker Compose Deployment / Update README & Generate List of Modified Services (push) Has been skipped
Docker Compose Deployment / PR Merge (push) Has been skipped
Docker Compose Deployment / Docker Compose Deployment (push) Has been skipped
This commit is contained in:
@@ -186,6 +186,53 @@ services:
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- ollama:/root/.ollama
|
||||
renovate:
|
||||
container_name: renovate
|
||||
environment:
|
||||
# --- Authentication & platform ---
|
||||
RENOVATE_TOKEN: "${RENOVATE_GITEA_TOKEN}" # Gitea personal access token for renovate-bot
|
||||
RENOVATE_PLATFORM: "gitea"
|
||||
RENOVATE_ENDPOINT: "https://git.${MY_TLD}/api/v1" # your Gitea URL
|
||||
RENOVATE_USERNAME: "renovate-bot"
|
||||
RENOVATE_GIT_AUTHOR: "Renovate Bot <it-services@trez.wtf>"
|
||||
RENOVATE_GITHUB_COM_TOKEN: ${LIBRECHAT_GITHUB_TOKEN}
|
||||
|
||||
# --- Behavior ---
|
||||
RENOVATE_AUTODISCOVER: "true" # discover all repos renovate-bot has access to
|
||||
RENOVATE_ONBOARDING: "true" # create onboarding PR if repo not configured
|
||||
RENOVATE_REQUIRE_CONFIG: "optional" # run even if no renovate config exists
|
||||
RENOVATE_REDIS_URL: redis://renovate-valkey:6379
|
||||
LOG_LEVEL: "info"
|
||||
|
||||
# --- Enable dependency dashboard ---
|
||||
RENOVATE_EXTENDS: "config:base,:dependencyDashboard"
|
||||
|
||||
# --- Example package rules ---
|
||||
RENOVATE_PRUNE_BRANCH_AFTER_AUTOMERG: false
|
||||
RENOVATE_PRUNE_STALE_BRANCHES: true
|
||||
|
||||
# --- Scheduling ---
|
||||
# Renovate will only process PRs/updates in this time window
|
||||
RENOVATE_SCHEDULE: '["after 2am and before 6am"]'
|
||||
OTEL_EXPORTER_OTLP_ENDPOINT: http://signoz-otel-collector:4318
|
||||
OTEL_SERVICE_NAME: renovate
|
||||
OTEL_SERVICE_NAMESPACE: renovate.${MY_TLD}
|
||||
image: renovate/renovate:41.97.12-full@sha256:e20639264151d9dce8f0fc3b1219748f4844a76cc157263551d8e7e061daa60e
|
||||
restart: unless-stopped
|
||||
renovate-valkey:
|
||||
container_name: renovate-valkey
|
||||
healthcheck:
|
||||
test: redis-cli ping || exit 1
|
||||
image: docker.io/bitnami/valkey:latest
|
||||
environment:
|
||||
ALLOW_EMPTY_PASSWORD: yes
|
||||
VALKEY_DATA_DIR: /data/valkey
|
||||
VALKEY_DATABASE: 0
|
||||
expose:
|
||||
- 6379
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- renovate-valkey-data:/data/valkey
|
||||
signoz-logspout:
|
||||
command: signoz://192.168.1.254:8082
|
||||
container_name: signoz-logspout
|
||||
@@ -236,3 +283,5 @@ volumes:
|
||||
name: dockflare_data
|
||||
ollama:
|
||||
name: ollama
|
||||
renovate-valkey-data:
|
||||
name: renovate-valkey-data
|
||||
Reference in New Issue
Block a user