updated compose files and added matrix server

This commit is contained in:
2026-08-09 18:04:48 +00:00
parent 031d14c224
commit 546ed488ba
9 changed files with 177 additions and 29 deletions
+29 -1
View File
@@ -1,7 +1,7 @@
---
services:
server:
image: gitea/gitea:1.23.8
image: gitea/gitea:1.26.2
container_name: gitea-server
environment:
- USER_UID=1000
@@ -13,6 +13,7 @@ services:
- GITEA__database__PASSWD=${POSTGRES_PASSWORD:?POSTGRES_PASSWORD not set}
- GITEA__server__SSH_PORT=2221
- GITEA__server__ROOT_URL=https://git.${DOMAIN}
- GITEA__actions__ENABLE=true
networks:
- frontend
- backend
@@ -48,6 +49,30 @@ services:
volumes:
- /mnt/raid1/data/docker/volumes/gitea-db:/var/lib/postgresql/data
restart: always
runner:
image: gitea/runner:latest
container_name: gitea-runner
environment:
- GITEA_INSTANCE_URL=https://git.${DOMAIN}
- GITEA_RUNNER_REGISTRATION_TOKEN=${RUNNER_TOKEN:?RUNNER_TOKEN not set}
- GITEA_RUNNER_NAME=gitea-runner
networks:
- frontend
volumes:
- /mnt/raid1/data/docker/volumes/gitea-runner:/data
- /var/run/docker.sock:/var/run/docker.sock
depends_on:
- server
restart: always
volumes:
gitea-data:
driver: local
@@ -59,3 +84,6 @@ networks:
external: true
backend:
external: true