Files
plex/docker-compose.yaml
T
mattspeer a4cf2851f3 Update docker-compose.yaml
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.
2026-05-31 12:34:13 -05:00

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