Update Dockerfile for plex

This commit is contained in:
Jean Froment 2018-06-19 20:25:12 +02:00
parent 23bec9b7b2
commit 12e5da42c0
2 changed files with 1 additions and 6 deletions

View File

@ -3,7 +3,7 @@ MAINTAINER Jean Froment <froment.je@gmail.com>
# Download plexupdate script and install Plex # Download plexupdate script and install Plex
# This script can be later used to update Plex directly in the container # This script can be later used to update Plex directly in the container
RUN curl -sL "https://raw.githubusercontent.com/Kelvin-Chen/plexupdate/master/plexupdate.sh" \ RUN curl -sL "https://github.com/mrworf/plexupdate/raw/master/plexupdate.sh" \
> /usr/local/bin/plexupdate \ > /usr/local/bin/plexupdate \
&& chmod +x /usr/local/bin/plexupdate \ && chmod +x /usr/local/bin/plexupdate \
&& plexupdate -pad \ && plexupdate -pad \

View File

@ -1,10 +1,5 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# Update to latest plexpass version
if [[ "$PLEX_EMAIL" ]]; then
plexupdate -ad --email "$PLEX_EMAIL" --pass "$PLEX_PASSWORD"
fi
mkdir -p "/config/Plex Media Server/" mkdir -p "/config/Plex Media Server/"
cp -n /Preferences.xml "/config/Plex Media Server/" cp -n /Preferences.xml "/config/Plex Media Server/"
rm -f "/config/Plex Media Server/plexmediaserver.pid" rm -f "/config/Plex Media Server/plexmediaserver.pid"