Add Dispatcharr IPTV stack
This commit is contained in:
2
dispatcharr/.env.example
Normal file
2
dispatcharr/.env.example
Normal file
@@ -0,0 +1,2 @@
|
||||
TZ=America/Chicago
|
||||
DISPATCHARR_LOG_LEVEL=info
|
||||
23
dispatcharr/README.md
Normal file
23
dispatcharr/README.md
Normal file
@@ -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.
|
||||
28
dispatcharr/docker-compose.yaml
Normal file
28
dispatcharr/docker-compose.yaml
Normal file
@@ -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
|
||||
Reference in New Issue
Block a user