Files
OverSnitch/docker-compose.yml
T
josh 03dcd606f8
Build and Push / build (push) Successful in 3m44s
Hardcode registry image in docker-compose
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-04-19 10:04:48 -04:00

25 lines
725 B
YAML

services:
oversnitch:
image: gitea.thewrightserver.net/josh/oversnitch:latest
container_name: oversnitch
restart: unless-stopped
ports:
- "${HOST_PORT:-3000}:3000"
volumes:
# Persists alerts.db and settings.json across restarts
- ./data:/app/data
environment:
- NODE_ENV=production
# All service URLs/API keys can be configured via the Settings UI after
# first boot. Uncomment below to provide them via env instead.
# - SEERR_URL=
# - SEERR_API=
# - RADARR_URL=
# - RADARR_API=
# - SONARR_URL=
# - SONARR_API=
# - TAUTULLI_URL=
# - TAUTULLI_API=
# - DISCORD_WEBHOOK=
# - NODE_TLS_REJECT_UNAUTHORIZED=0