Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- version: "3.9"
- services:
- plex:
- image: linuxserver/plex:latest
- restart: unless-stopped
- container_name: plex
- network_mode: host
- runtime: nvidia
- environment:
- - TZ=<HIDDEN>
- - VERSION=latest
- - NVIDIA_VISIBLE_DEVICES=all
- volumes:
- - config_plex:/config
- - movies:/movies
- - series:/series
- volumes:
- movies:
- driver_opts:
- type: "nfs"
- o: "addr=192.168.1.8,nolock,soft,rw"
- device: ":/volume1/MediaCenter/Movies"
- series:
- driver_opts:
- type: "nfs"
- o: "addr=192.168.1.8,nolock,soft,rw"
- device: ":/volume1/MediaCenter/Series"
- config_plex:
- driver_opts:
- type: "nfs"
- o: "addr=192.168.1.8,nolock,soft,rw"
- device: ":/volume1/docker/config/plex"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement