Files
docker-infrastructure/plex/docker-compose.yaml
T
2026-01-29 03:35:17 +00:00

37 lines
896 B
YAML

volumes:
nas_media:
external: true
name: nas_media
services:
plex:
container_name: plex
image: plexinc/pms-docker
restart: unless-stopped
ports:
- 32400:32400/tcp
- 3005:3005/tcp
- 8324:8324/tcp
- 32469:32469/tcp
- 1900:1900/udp
- 32410:32410/udp
- 32412:32412/udp
- 32413:32413/udp
- 32414:32414/udp
environment:
- TZ=America/New_York
- PLEX_CLAIM=claim-VCuJznuC2nxFyVgAcKec
- ADVERTISE_IP=http://73.108.236.191:32400/
- NVIDIA_VISIBLE_DEVICES=all
- NVIDIA_DRIVER_CAPABILITIES=compute,video,utility
hostname: Photon
volumes:
- /srv/plex:/config
- /srv/plex-transcode:/transcode
- nas_media:/data
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: all
capabilities: [gpu]