ansible/roles/docker/files/gitea-compose.yml

24 lines
473 B
YAML
Raw Normal View History

2024-08-14 04:18:11 +02:00
version: "3"
services:
server:
image: gitea/gitea:1.22.1
container_name: gitea
environment:
- USER_UID=1000
- USER_GID=1000
restart: unless-stopped
volumes:
- gitea:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
ports:
- 222:22
extra_hosts:
2024-09-21 00:46:16 +02:00
- 'auth.thesatelliteoflove.com:172.20.0.3'
2024-08-14 04:18:11 +02:00
volumes:
gitea:
driver: local
networks:
default:
external: true
name: lava