channel ids
Build and Push Docker Images / build-and-push (push) Successful in 23s

This commit is contained in:
2026-02-11 22:37:58 +01:00
parent 7f55ece85f
commit 2706a21818
5 changed files with 20 additions and 4 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ docker run -d --name iptv -p 8080:8080 \
-v /path/to/data:/data \
self-hosted-iptv
```
When using TMDB metadata, mount `/data` read-write (as above) so the app can store and reuse metadata in `/data/tmdb_cache/`. Use `-v /path/to/data:/data:ro` only if you do not use TMDB.
Mount `/data` read-write (omit `:ro`) so the app can persist the schedule cache in `/data/cache/` — otherwise the schedule must be rebuilt on every restart. TMDB metadata also requires read-write access for `/data/tmdb_cache/`.
**EPG timespan:** Set `EPG_TIMESPAN` to control how far ahead the guide is generated (default `14d`). Examples: `2d`, `7d`, `48h`. The randomized schedule is refreshed after (timespan 3 hours) so a new block of content is ready before the current one ends. Example: `-e EPG_TIMESPAN=2d` gives 2 days of EPG and a new schedule every 45 hours.