03dcd606f8
Build and Push / build (push) Successful in 3m44s
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
25 lines
725 B
YAML
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
|