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

31 lines
697 B

version: "3.9"
services:
server:
image: gitea/gitea:latest
container_name: gitea
environment:
- USER_UID=1000
- USER_GID=1000
- GITEA__database__DB_TYPE=postgres
- GITEA__database__HOST="postgresql:${POSTGRES_PORT}"
- GITEA__database__NAME="${GIT_DB}"
- GITEA__database__USER="${GIT_DB_USER}"
- GITEA__database__PASSWD="${GIT_DB}"
restart: always
volumes:
- /root/containers/gitea/data:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
networks:
- postgresql-network
- caddy-network
ports:
- "${GIT_PORT}:3000"
- "222:22"
volumes:
gitea:
name: gitea