Last active 1685969341

If you like to set up Live TV in Plex with your own Sat>IP Server (In Hostmode)

gistfile1.txt Raw
1version: "3"
2services:
3 plex:
4 image: linuxserver/plex:latest
5 container_name: plex
6 network_mode: host
7 environment:
8 - PUID=1026
9 - PGID=100
10 - TZ=Europe/Berlin
11 - VERSION=docker
12 - PLEX_CLAIM= # dont forget to get your plex claim here: https://www.plex.tv/claim/
13 volumes:
14 - /volume1/docker/plex:/config
15 - /volume1/media/:/family # change your media destination folder as you like. Even the name "family" is changeable
16 - /volume1/homes:/private # create a second (or even third or fouth) folder if you need. Or simply delete the line
17 restart: unless-stopped
18
19 tvheadend:
20 image: linuxserver/tvheadend:latest
21 container_name: tvheadend
22 network_mode: host
23 environment:
24 - PUID=1026
25 - PGID=100
26 - TZ=Europe/Berlin
27 volumes:
28 - /volume1/docker/Media/TVHeadend:/config
29 - /volume1/docker/Media/TVHeadend:/recordings
30 restart: unless-stopped
31
32 antennas:
33 image: thejf/antennas:latest
34 container_name: antennas
35 network_mode: host
36 environment:
37 - ANTENNAS_URL=http://localhost:5004
38 - TVHEADEND_URL=http://localhost:9981
39 - TUNER_COUNT=2