From 6c837c7de8204059bad4dd6c4baf165112e6d4d2 Mon Sep 17 00:00:00 2001 From: Dr Alexander Mikhalev Date: Tue, 10 Mar 2026 21:25:25 +0000 Subject: [PATCH] chore: Upgrade Gitea to 1.26.0 with Robot API - Update Gitea image from 1.22.6 to 1.26.0 - Switch to ghcr.io/terraphim/gitea registry - Add Robot API configuration section - Enable PageRank algorithm with damping=0.85, iterations=100 - Enable audit logging for Robot API access Related to #8 --- docker-compose.yml.template | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/docker-compose.yml.template b/docker-compose.yml.template index cd8dad5..d43125c 100644 --- a/docker-compose.yml.template +++ b/docker-compose.yml.template @@ -15,7 +15,7 @@ networks: services: server: - image: gitea/gitea:1.22.6 + image: ghcr.io/terraphim/gitea:1.26.0 container_name: gitea environment: - USER_UID=1000 @@ -72,6 +72,13 @@ services: - GITEA__lfs__MINIO_SECRET_ACCESS_KEY=op://TerraphimPlatform/gitea-s3/secret-key - GITEA__lfs__MINIO_BUCKET=gitea-lfs - GITEA__lfs__MINIO_USE_SSL=false + # Robot API Configuration (Gitea 1.26.0+) + - GITEA__issue_graph__ENABLED=true + - GITEA__issue_graph__DAMPING_FACTOR=0.85 + - GITEA__issue_graph__ITERATIONS=100 + - GITEA__issue_graph__PAGERANK_CACHE_TTL=300 + - GITEA__issue_graph__AUDIT_LOG=true + - GITEA__issue_graph__STRICT_MODE=false restart: always networks: - gitea