From 5a7256c50c096b2b592c68f942cc8b71076d2f12 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 23 Mar 2020 21:46:14 +0000 Subject: [PATCH] Bot Updating Documentation --- images/docker-plex.md | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/images/docker-plex.md b/images/docker-plex.md index e49de819c..c0a07829c 100644 --- a/images/docker-plex.md +++ b/images/docker-plex.md @@ -43,9 +43,9 @@ docker create \ -e VERSION=docker \ -e UMASK_SET=022 `#optional` \ -e PLEX_CLAIM= `#optional` \ - -v :/config \ - -v :/tv \ - -v :/movies \ + -v /path/to/library:/config \ + -v /path/to/tvseries:/tv \ + -v /path/to/movies:/movies \ --restart unless-stopped \ linuxserver/plex ``` @@ -70,9 +70,9 @@ services: - UMASK_SET=022 #optional - PLEX_CLAIM= #optional volumes: - - :/config - - :/tv - - :/movies + - /path/to/library:/config + - /path/to/tvseries:/tv + - /path/to/movies:/movies restart: unless-stopped ``` @@ -161,12 +161,18 @@ Valid settings for VERSION are:- + **`public`**: will update plexpass users to the latest public version, useful for plexpass users that don't want to be on the bleeding edge but still want the latest public updates. + **``**: will select a specific version (eg 0.9.12.4.1192-9a47d21) of plex to install, note you cannot use this to access plexpass versions if you do not have plexpass. +## Hardware Acceleration + +### Intel + Hardware acceleration users for Intel Quicksync will need to mount their /dev/dri video device inside of the container by passing the following command when running or creating the container: ```--device=/dev/dri:/dev/dri``` We will automatically ensure the abc user inside of the container has the proper permissions to access this device. +### Nvidia + Hardware acceleration users for Nvidia will need to install the container runtime provided by Nvidia on their host, instructions can be found here: https://github.com/NVIDIA/nvidia-docker @@ -188,6 +194,7 @@ We automatically add the necessary environment variable that will utilise all th ## Versions +* **23.03.20:** - Remove udev hack (no longer needed), suppress uuid error in log during first start. * **04.12.19:** - Add variable for setting PLEX_CLAIM. Remove `/transcode` volume mapping as it is now set via plex gui and defaults to a location under `/config`. * **06.08.19:** - Add variable for setting UMASK. * **10.07.19:** - Fix permissions for tuner (/dev/dvb) devices.