This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
services/gitea/docker-compose.yml

26 lines
539 B
YAML

version: "3.8"
volumes:
gitea:
name: ${GITEA_VOLUME_NAME}
services:
gitea:
container_name: ${GITEA_CONTAINER_NAME}
image: ${GITEA_IMAGE}
restart: always
environment:
# - USER_UID=1000
# - USER_GID=1000
DB_TYPE: postgres
DB_HOST: postgres:5432
DB_NAME: ${POSTGRES_DB}
DB_USER: ${POSTGRES_USER}
DB_PASSWD: ${POSTGRES_PASSWORD}
volumes:
- gitea:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
depends_on:
- postgres