Files
server-infra/gitea/docker-compose.yml
Deeman 71a1386f13 fix: bind Gitea to 127.0.0.1 only — not exposed to internet
nginx proxy manager reaches it via localhost. No reason to bind to all interfaces.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-02-27 17:31:18 +01:00

15 lines
367 B
YAML

services:
gitea:
image: gitea/gitea:latest
container_name: gitea
restart: always
ports:
- "127.0.0.1:3100:3000"
volumes:
- /data/server-infra/gitea:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
environment:
- GITEA__database__DB_TYPE=sqlite3
- GITEA__server__SSH_DISABLED=true