Advertisement
Guest User

Untitled

a guest
Oct 12th, 2021
559
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.91 KB | None | 0 0
  1. version: "3.9"
  2. services:
  3.     plex:
  4.         image: linuxserver/plex:latest
  5.         restart: unless-stopped
  6.         container_name: plex
  7.         network_mode: host
  8.         runtime: nvidia
  9.         environment:
  10.            - TZ=<HIDDEN>
  11.            - VERSION=latest
  12.             - NVIDIA_VISIBLE_DEVICES=all
  13.         volumes:
  14.            - config_plex:/config
  15.             - movies:/movies
  16.             - series:/series
  17.  
  18. volumes:
  19.     movies:
  20.         driver_opts:
  21.             type: "nfs"
  22.             o: "addr=192.168.1.8,nolock,soft,rw"
  23.             device: ":/volume1/MediaCenter/Movies"
  24.     series:
  25.         driver_opts:
  26.             type: "nfs"
  27.             o: "addr=192.168.1.8,nolock,soft,rw"
  28.             device: ":/volume1/MediaCenter/Series"
  29.     config_plex:
  30.         driver_opts:
  31.             type: "nfs"
  32.             o: "addr=192.168.1.8,nolock,soft,rw"
  33.             device: ":/volume1/docker/config/plex"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement