Initial commit

This commit is contained in:
Dmitry Bikulov
2026-08-23 17:17:37 +03:00
commit d97525408e
16 changed files with 391 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
services:
gitea:
image: gitea/gitea
container_name: gitea
restart: unless-stopped
networks:
- proxy
ports:
- "22:22"
volumes:
- ./data/gitea:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
labels:
- "traefik.enable=true"
- "traefik.http.services.gitea.loadbalancer.server.port=3000"
- "traefik.http.routers.gitea.rule=Host(`${GITEA_HOST}`)"
- "traefik.http.routers.gitea.entrypoints=websecure"
- "traefik.http.routers.gitea.tls.certresolver=le"
networks:
proxy:
name: proxy
external: true
+1
View File
@@ -0,0 +1 @@
GITEA_HOST=