Files
DockerConfigs/docker-compose.d/Documentation/gitea.yml

26 lines
452 B
YAML

services:
gitea:
container_name: gitea
image: gitea/gitea:latest
environment:
- GITEA__service__DISABLE_REGISTRATION=true
- USER_UID=1000
- USER_GID=1000
volumes:
- gitea:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
restart: unless-stopped
networks:
- caddy
networks:
caddy:
name: caddy
external: true
volumes:
gitea:
name: gitea
external: true