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