modul347/compose.yaml

29 lines
667 B
YAML
Raw Normal View History

2024-02-06 10:54:37 +01:00
services:
gitea:
image: gitea/gitea:latest
environment:
- DB_TYPE=postgres
- DB_HOST=db:5432
- DB_NAME=gitea
- DB_USER=gitea
- DB_PASSWD=gitea
restart: always
volumes:
- git_data:/data
ports:
- 3000:3000
db:
image: postgres:alpine
environment:
- POSTGRES_USER=gitea
- POSTGRES_PASSWORD=gitea
- POSTGRES_DB=gitea
restart: always
volumes:
- postgres-data:/var/lib/postgresql/data
expose:
- 5432
volumes:
postgres-data:
git_data: