diff --git a/README.md b/README.md index 4984db9..7fb826d 100644 --- a/README.md +++ b/README.md @@ -157,7 +157,7 @@ Webui can be found at `:32400/web` Valid settings for VERSION are:- -`IMPORTANT NOTE:- YOU CANNOT UPDATE TO A PLEXPASS ONLY VERSION IF YOU DO NOT HAVE PLEXPASS` +`IMPORTANT NOTE:- YOU CANNOT UPDATE TO A PLEXPASS ONLY (BETA) VERSION IF YOU ARE NOT LOGGED IN WITH A PLEXPASS ACCOUNT` + **`docker`**: Let Docker handle the Plex Version, we keep our Dockerhub Endpoint up to date with the latest public builds. This is the same as leaving this setting out of your create command. + **`latest`**: will update plex to the latest version available that you are entitled to. @@ -208,6 +208,7 @@ Below are the instructions for updating containers: ## Versions +* **15.02.19:** - Clean up plex pid after unclean stop. * **11.02.19:** - Fix nvidia variables, add device variables. * **16.01.19:** - Add pipeline logic, multi arch, and HW transcoding configuration; remove avahi service. * **07.09.18:** - Rebase to ubuntu bionic, add udev package. diff --git a/readme-vars.yml b/readme-vars.yml index 3de5b58..0326efb 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -62,7 +62,7 @@ app_setup_block: | Valid settings for VERSION are:- - `IMPORTANT NOTE:- YOU CANNOT UPDATE TO A PLEXPASS ONLY VERSION IF YOU DO NOT HAVE PLEXPASS` + `IMPORTANT NOTE:- YOU CANNOT UPDATE TO A PLEXPASS ONLY (BETA) VERSION IF YOU ARE NOT LOGGED IN WITH A PLEXPASS ACCOUNT` + **`docker`**: Let Docker handle the Plex Version, we keep our Dockerhub Endpoint up to date with the latest public builds. This is the same as leaving this setting out of your create command. + **`latest`**: will update plex to the latest version available that you are entitled to. @@ -83,6 +83,7 @@ app_setup_block: | # changelog changelogs: + - { date: "15.02.19:", desc: "Clean up plex pid after unclean stop." } - { date: "11.02.19:", desc: "Fix nvidia variables, add device variables." } - { date: "16.01.19:", desc: "Add pipeline logic, multi arch, and HW transcoding configuration; remove avahi service." } - { date: "07.09.18:", desc: "Rebase to ubuntu bionic, add udev package." } diff --git a/root/etc/cont-init.d/40-chown-files b/root/etc/cont-init.d/40-chown-files index 47ecba9..9ba9b14 100644 --- a/root/etc/cont-init.d/40-chown-files +++ b/root/etc/cont-init.d/40-chown-files @@ -15,6 +15,10 @@ if [ ! "$(stat -c %u /config/Library)" = "$PUID" ]; then /config/Library fi +# remove plex pid after unclean stop +[[ -f "/config/Library/Application Support/Plex Media Server/plexmediaserver.pid" ]] && \ + rm /config/Library/Application Support/Plex Media Server/plexmediaserver.pid + # permissions (non-recursive) on config root and folders chown abc:abc \ /config \