Add apps/gitea/compose.yaml
This commit is contained in:
20
apps/gitea/compose.yaml
Normal file
20
apps/gitea/compose.yaml
Normal 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
|
||||||
Reference in New Issue
Block a user