gistfile1.txt
· 1.2 KiB · Text
Raw
version: "3"
services:
plex:
image: linuxserver/plex:latest
container_name: plex
network_mode: host
environment:
- PUID=1026
- PGID=100
- TZ=Europe/Berlin
- VERSION=docker
- PLEX_CLAIM= # dont forget to get your plex claim here: https://www.plex.tv/claim/
volumes:
- /volume1/docker/plex:/config
- /volume1/media/:/family # change your media destination folder as you like. Even the name "family" is changeable
- /volume1/homes:/private # create a second (or even third or fouth) folder if you need. Or simply delete the line
restart: unless-stopped
tvheadend:
image: linuxserver/tvheadend:latest
container_name: tvheadend
network_mode: host
environment:
- PUID=1026
- PGID=100
- TZ=Europe/Berlin
volumes:
- /volume1/docker/Media/TVHeadend:/config
- /volume1/docker/Media/TVHeadend:/recordings
restart: unless-stopped
antennas:
image: thejf/antennas:latest
container_name: antennas
network_mode: host
environment:
- ANTENNAS_URL=http://localhost:5004
- TVHEADEND_URL=http://localhost:9981
- TUNER_COUNT=2
1 | version: "3" |
2 | services: |
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 |