From 2b2990bd8cead8060852422eb01fd07ad2e5129d Mon Sep 17 00:00:00 2001 From: lonix Date: Wed, 8 Jul 2015 13:34:31 +0200 Subject: [PATCH] Implemnting TRUE autoupdate thanks to KodeStar from fanart.tv (and now the linuxserver.io crew, welcome!) This is herby the kode update --- Dockerfile | 2 +- init/{90_uid_gid_fix.sh => 11_new_user.sh} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename init/{90_uid_gid_fix.sh => 11_new_user.sh} (100%) diff --git a/Dockerfile b/Dockerfile index e7d5b62..7c749fb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ CMD ["/sbin/my_init"] # Install Plex RUN apt-get -q update && \ -VERSION=$(curl https://raw.githubusercontent.com/linuxserver/misc-files/master/plex-version/public) && \ +VERSION=$(curl -s https://fanart.tv/webservice/plex/plex.php | grep "version" | cut -d '"' -f 4) && \ apt-get install -qy dbus gdebi-core avahi-daemon wget && \ wget -P /tmp "http://downloads.plexapp.com/plex-media-server/$VERSION/plexmediaserver_${VERSION}_amd64.deb" && \ gdebi -n /tmp/plexmediaserver_${VERSION}_amd64.deb && \ diff --git a/init/90_uid_gid_fix.sh b/init/11_new_user.sh similarity index 100% rename from init/90_uid_gid_fix.sh rename to init/11_new_user.sh