gitea/docker-compose.yml

31 lines
649 B
YAML
Raw Permalink Normal View History

2021-11-09 09:44:28 -06:00
version: "3"
services:
postgres:
2022-04-09 00:27:23 -05:00
image: postgres:14
2021-11-09 09:44:28 -06:00
environment:
- POSTGRES_USER=gitea
- POSTGRES_PASSWORD
- POSTGRES_DB=giteadb
volumes:
- ./data/postgres:/var/lib/postgresql/data/
- ./data/progs:/progs
restart: always
healthcheck:
test: pg_isready -U gitea -d giteadb
interval: 10s
timeout: 5s
retries: 5
gitea:
2023-04-16 17:53:03 -05:00
image: gitea/gitea:latest
2021-11-09 09:44:28 -06:00
restart: always
volumes:
- ./data/gitea:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
ports:
- 127.0.0.1:81:3000
- 22:2222
depends_on:
- postgres