mirror of
https://github.com/CoolnsX/selfhost.git
synced 2025-12-20 07:15:17 +05:30
22 lines
433 B
YAML
22 lines
433 B
YAML
services:
|
|
server:
|
|
image: gitea/gitea:latest
|
|
container_name: gitea
|
|
environment:
|
|
- USER_UID=1001
|
|
- USER_GID=1001
|
|
- DISABLE_REGISTRATION=true
|
|
volumes:
|
|
- ./gitea:/data
|
|
- /etc/timezone:/etc/timezone:ro
|
|
- /etc/localtime:/etc/localtime:ro
|
|
#ports:
|
|
# - "2222:22"
|
|
restart: unless-stopped
|
|
networks:
|
|
- nginx_proxy
|
|
|
|
networks:
|
|
nginx_proxy:
|
|
external: true
|