a4cf2851f3
removed traefik labels and network due to utilizing traefik configuration file. This is due to plex requiring network: host so that it can communicate with local network devices.
20 lines
459 B
YAML
20 lines
459 B
YAML
services:
|
|
plex:
|
|
image: lscr.io/linuxserver/plex:latest
|
|
container_name: plex
|
|
network_mode: host
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=America/Chicago
|
|
- VERSION=docker
|
|
- PLEX_CLAIM= #optional
|
|
volumes:
|
|
- /home/mattspeer/docker/plex:/config
|
|
- /srv/tv:/tv
|
|
- /srv/movies:/movies
|
|
- /srv/music:/music
|
|
- /srv/audiobooks:/audiobooks
|
|
ports:
|
|
- 32400:32400
|
|
restart: always |