From 10c20febca229db72b8a46afb33d0597cb4948f2 Mon Sep 17 00:00:00 2001 From: drew Date: Sat, 3 Jan 2026 18:20:39 +0000 Subject: [PATCH] Add apps/gitea/compose.yaml --- apps/gitea/compose.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 apps/gitea/compose.yaml diff --git a/apps/gitea/compose.yaml b/apps/gitea/compose.yaml new file mode 100644 index 0000000..04b870c --- /dev/null +++ b/apps/gitea/compose.yaml @@ -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 \ No newline at end of file