diff --git a/dispatcharr/.env.example b/dispatcharr/.env.example new file mode 100644 index 0000000..f349a7f --- /dev/null +++ b/dispatcharr/.env.example @@ -0,0 +1,2 @@ +TZ=America/Chicago +DISPATCHARR_LOG_LEVEL=info diff --git a/dispatcharr/README.md b/dispatcharr/README.md new file mode 100644 index 0000000..a65b594 --- /dev/null +++ b/dispatcharr/README.md @@ -0,0 +1,23 @@ +# Dispatcharr + +Dispatcharr IPTV stack for PD. + +Live paths: +- Compose: `/mnt/docker-ssd/docker/compose/dispatcharr` +- Appdata: `/mnt/docker-ssd/docker/appdata/dispatcharr` + +Deployment: +```bash +cd /mnt/docker-ssd/docker/compose/dispatcharr +sudo -n docker compose --env-file .env config +sudo -n docker compose --env-file .env up -d +``` + +Access: +- Direct LAN URL: `http://10.5.30.6:9191` + +Notes: +- Uses Dispatcharr's recommended all-in-one container (`DISPATCHARR_ENV=aio`). +- Data is persisted at `/mnt/docker-ssd/docker/appdata/dispatcharr`. +- First-run setup creates the initial local Dispatcharr user in the web UI. +- IPTV credentials and EPG sources are added later through the UI. diff --git a/dispatcharr/docker-compose.yaml b/dispatcharr/docker-compose.yaml new file mode 100644 index 0000000..1751986 --- /dev/null +++ b/dispatcharr/docker-compose.yaml @@ -0,0 +1,28 @@ +networks: + pangolin: + external: true + +services: + dispatcharr: + image: ghcr.io/dispatcharr/dispatcharr:latest + container_name: dispatcharr + restart: unless-stopped + networks: + - default + - pangolin + ports: + - "9191:9191" + environment: + TZ: ${TZ} + DISPATCHARR_ENV: aio + REDIS_HOST: localhost + CELERY_BROKER_URL: redis://localhost:6379/0 + DISPATCHARR_LOG_LEVEL: ${DISPATCHARR_LOG_LEVEL:-info} + volumes: + - /mnt/docker-ssd/docker/appdata/dispatcharr:/data + healthcheck: + test: ["CMD-SHELL", "wget -qO- http://127.0.0.1:9191/ >/dev/null 2>&1 || curl -sf http://127.0.0.1:9191/ >/dev/null 2>&1 || exit 1"] + interval: 30s + timeout: 10s + retries: 5 + start_period: 90s