You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
487 B
YAML

version: "3"
services:
gitea:
image: gitea/gitea:latest
environment:
- USER_UID=1000
- USER_GID=1000
- DB_TYPE=postgres
- DB_NAME=gitea
- DB_USER=gitea
- "DB_HOST=${DB_HOST}"
- "DB_PASSWD=${DB_PASSWD}"
- RUN_MODE=dev
- DOMAIN=gitea.auro.re
restart: always
volumes:
- ./data:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
ports:
- "3000:3000"
- "222:22"