Add apps/gitea/compose.yaml

This commit is contained in:
2026-01-03 18:20:39 +00:00
parent 727114220b
commit 10c20febca

20
apps/gitea/compose.yaml Normal file
View File

@@ -0,0 +1,20 @@
services:
server:
image: gitea/gitea:latest
container_name: gitea
restart: always
environment:
- GITEA__database__DB_TYPE=postgres
- GITEA__database__HOST=global_postgres:5432 # Point to the universal container
- GITEA__database__NAME=gitea
- GITEA__database__USER=gitea
- GITEA__database__PASSWD=check-password-in-keeper
networks:
- db_network
- web_gateway
networks:
db_network:
external: true
web_gateway:
external: true