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
This commit is contained in:
2026-03-10 21:25:25 +00:00
parent b7c8795157
commit 6c837c7de8
+8 -1
View File
@@ -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