Automatic m3u8 / xml grabber for TheTvApp
♾️ TheTvApp Automated Grabber ♾️
Docker image which automatically fetches the M3U playlist and EPG (XML) guide data for TheTvApp. Can be loaded into IPTV applications such as Jellyfin.
Makes use of the generous work over at https://github.com/dtankdempse/thetvapp-m3u
About
This container allows you to automatically fetch the latest .m3u8 playlist, and .xml guide files for the TheTvApp IPTV service.
Once the container is started up, an initial grab will be done immediately. After that initial grab, the container will periodically grab new copies of the files every X hours, which can be adjusted by modifying the docker environment variables.
The fetched .m3u8 and .xml files are then placed in a self-hosted nginx webserver which allows you to add the direct links directly into applications such as Jellyfin without having to go back and update the files on your own.
Container supports the following:
- Automatically grabs .m3u8 and .xml files when container started up
- Every 60 minutes, a new copy of the .m3u8 and .xml files will be fetched
- Supports both ports
80and443 - Self-signed SSL certificates (optional)
- Mountable volume to control Nginx webserver files
Install
Instructions on using this container
Docker Compose
Create a new docker-compose.yml with the following:
services:
thetvapp:
container_name: thetvapp
image: ghcr.io/aetherinox/thetvapp-docker:latest
restart: unless-stopped
volumes:
- ./thetvapp:/config
environment:
- PUID=1000
- PGID=1000
- TZ=America/Los_Angeles
- CRON_TIME=*/60 * * * *
Caution
Do not add
"quotation marks toCRON_TIMEenvironment variable. Automated timer will not function if you do.✔️ Correct
environment: - CRON_TIME=*/60 * * * *❌ Incorrect
environment: - CRON_TIME="*/60 * * * *"
Env Variables & Volumes
You can utilize the following environment variables with this container:
Environment Variables
The following env variables can be modified before spinning up this container:
| Env Var | Default | Description |
|---|---|---|
PORT_HTTP |
80 | Defines the HTTP port to run on |
PORT_HTTPS |
443 | Defines the HTTPS port to run on |
CRON_TIME |
0/60 * * * * | Determines how often the .m3u8 and .xml guide files are updated |
URL_XML |
https://raw.githubusercontent.com/dtankdempse/thetvapp-m3u/refs/heads/main/guide/epg.xml | URL to fetch .xml file |
URL_XML_GZ |
https://raw.githubusercontent.com/dtankdempse/thetvapp-m3u/refs/heads/main/guide/epg.xml.gz | URL to fetch .xml.gz file |
URL_M3U |
https://thetvapp-m3u.data-search.workers.dev/playlist | URL to fetch .m3u8 file |
Volumes
The following volumes can be mounted with this container:
| Volume | Description |
|---|---|
./thetvapp:/config |
Path which stores downloaded .m3u8, .xml, nginx configs, and optional SSL certificate/keys |
Build
You can build your own copy of the image by running the following:
git clone https://github.com/Aetherinox/thetvapp-docker.git .
docker build -t thetvapp .
Shell / Bash
You can access the docker container's shell by running:
docker exec -it thetvapp ash
Contributors ✨
We are always looking for contributors. If you feel that you can provide something useful to Gistr, then we'd love to review your suggestion. Before submitting your contribution, please review the following resources:
Want to help but can't write code?
- Review active questions by our community and answer the ones you know.
The following people have helped get this project going: