From 0a7b4ba1913d4ad2a0665a1af518c9d707405eed Mon Sep 17 00:00:00 2001 From: nathan Date: Sat, 11 Apr 2026 22:07:06 -0400 Subject: [PATCH] Add Plex service configuration to Docker Compose --- nodes/waldorf/plex/compose.yaml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 nodes/waldorf/plex/compose.yaml diff --git a/nodes/waldorf/plex/compose.yaml b/nodes/waldorf/plex/compose.yaml new file mode 100644 index 0000000..39cd3a7 --- /dev/null +++ b/nodes/waldorf/plex/compose.yaml @@ -0,0 +1,32 @@ +services: + plex: + image: lscr.io/linuxserver/plex:latest + container_name: plex + network_mode: host + restart: unless-stopped + environment: + - PUID=1000 + - PGID=1000 + - TZ=America/New_York + - VERSION=docker + - PLEX_CLAIM=claim-sxFpsPTDzzF-9RZAxtUL + - NVIDIA_VISIBLE_DEVICES=all + - NVIDIA_DRIVER_CAPABILITIES=compute,video,utility + volumes: + - /mnt/appdata/plex:/config + - /mnt/media/tvshows:/tv + - /mnt/media/movies:/movies + deploy: + resources: + reservations: + devices: + - driver: nvidia + count: 1 + capabilities: [gpu] + labels: + - "traefik.enable=true" + - "traefik.http.routers.plex.entrypoints=websecure" + - "traefik.http.routers.plex.rule=Host(`plex.castaldifamily.com`)" + - "traefik.http.routers.plex.tls=true" + - "traefik.http.routers.plex.tls.certresolver=cloudflare" + - "traefik.http.services.plex.loadbalancer.server.port=32400"