Files
docker-infrastructure/gitea/docker-compose.yaml
T
poprhythm f665865762 cleanup: remove quizmaster and leafweb (unused/orphaned), add watchtower monitor-only labels, minor consistency fixes
- quizmaster: removed entirely (test service, no longer used); also removed Portainer stack and /srv/quizmaster data
- leafweb: removed orphaned MSSQL compose file (no running container, no Portainer stack, no data on disk)
- authelia, gitea, couchdb, portainer, immich (server + ml): add com.centurylinklabs.watchtower.monitor-only=true so watchtower still notifies on new versions without auto-applying them
- ladder: restore restart: unless-stopped (was commented out)
- rackpeek: add missing TZ env var
2026-07-20 02:19:32 +00:00

26 lines
593 B
YAML

networks:
default:
external:
name: npm-network
services:
server:
image: docker.gitea.com/gitea:nightly
container_name: gitea
labels:
- com.centurylinklabs.watchtower.monitor-only=true
environment:
- USER_UID=1000
- USER_GID=1000
- VIRTUAL_HOST=gitea.kolpacksoftware.com
- VIRTUAL_PORT=3000
- LETSENCRYPT_HOST=gitea.kolpacksoftware.com
restart: always
volumes:
- /srv/gitea-data:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
ports:
- "3001:3000"
- "222:22"