IPTV channel catalog and M3U playlist manager for Channels DVR
1.4K
A self-hosted web app for browsing the iptv-org channel catalog, building M3U playlists, and pushing them directly to Channels DVR.
services:
iptv-catalog:
image: zackwag/iptv-catalog:latest
container_name: iptv-catalog
restart: unless-stopped
ports:
- 3000:3000
volumes:
- ./data:/app/data
- ./epg:/app/epg-shared
iptv-catalog-epg:
image: ghcr.io/iptv-org/epg:master
container_name: iptv-catalog-epg
restart: unless-stopped
environment:
CRON_SCHEDULE: "0 */6 * * *"
DAYS: "3"
MAX_CONNECTIONS: "5"
volumes:
- ./epg:/epg/public
depends_on:
- iptv-catalog
The web UI is available at http://localhost:3000. The catalog is fetched automatically on first boot.
| Variable | Default | Description |
|---|---|---|
PORT | 3000 | HTTP port |
DATA_DIR | /app/data | SQLite database location |
EPG_SHARED_DIR | /app/epg-shared | Shared volume with EPG sidecar |
LOG_LEVEL | info | debug, info, warn, error |
Content type
Image
Digest
sha256:0f5802697…
Size
163.9 MB
Last updated
3 days ago
docker pull zackwag/iptv-catalog:1.0