You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mkdir -p /home/pi/docker/plexiptv
vi /home/pi/docker/plexiptv/settings.json
{
"m3u8": {
"local": "iptv.m3u8", // Locale file
"remote": "https://api.init7.net/tvchannels.m3u" // Remote URL of the playlist
},
"serverPort": 1234, // Server port
"serverName": "PlexIPTV", // Name of the server
"tunerCount": 1, // How many simultaneous feed your IPTV provider support
"removeIfNotFoundOnFilter": true, // Will remove channel from playlist that aren't present on the filter list
"doNotPullRemotePlaylist": false, // Will not pul online playlist
}
Since the raspberry pi is ARMv8, I was force to rebuild your docker image
git clone https://github.com/xiaodoudou/PlexIPTV.git
cd PlexIPTV
vi Dockerfile
replace first line with from node:9
cd ..
docker build -t plexiptvarm ./PlexIPTV
Thanks for the program!
Since the raspberry pi is ARMv8, I was force to rebuild your docker image
running the container
docker run -p 12345:1234 --name="plexiptvarm"
-e NODE_TLS_REJECT_UNAUTHORIZED=0
--volume /home/pi/docker/plexiptv:/opt/PlexIPTV/config
-d plexiptvarm
Note: I added NODE_TLS_REJECT_UNAUTHORIZED=0 this is insecure but the provider of the mp3 has an expired certificate! this is temporary
Now in the Logs, I see 0 channels found....
maybe you see the error immediately?
The text was updated successfully, but these errors were encountered: