From 16394b36ed42ae8c21dc33f9ffd5ca91af52d111 Mon Sep 17 00:00:00 2001 From: sparklyballs Date: Sat, 9 Dec 2017 15:47:32 +0000 Subject: [PATCH] fix continuation lines --- Dockerfile | 13 +++++-------- README.md | 1 + 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5a5d92e..da2e297 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ FROM lsiobase/xenial -MAINTAINER Stian Larsen, sparklyballs # set version label ARG BUILD_DATE ARG VERSION LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" +LABEL maintainer="stian larsen,sparklyballs" # global environment settings ENV DEBIAN_FRONTEND="noninteractive" \ @@ -16,25 +16,22 @@ PLEX_MEDIA_SERVER_INFO_DEVICE=docker \ PLEX_MEDIA_SERVER_MAX_PLUGIN_PROCS="6" \ PLEX_MEDIA_SERVER_USER=abc -# install packages RUN \ + echo "**** install packages ****" && \ apt-get update && \ apt-get install -y \ avahi-daemon \ dbus \ unrar \ wget && \ - -# install plex + echo "**** install plex ****" && \ curl -o \ /tmp/plexmediaserver.deb -L \ "${PLEX_INSTALL}" && \ dpkg -i /tmp/plexmediaserver.deb && \ - -# change abc home folder to fix plex hanging at runtime with usermod + echo "**** change abc home folder to fix plex hanging at runtime with usermod ****" && \ usermod -d /app abc && \ - -# cleanup + echo "**** cleanup ****" && \ apt-get clean && \ rm -rf \ /etc/default/plexmediaserver \ diff --git a/README.md b/README.md index cc8316b..b6c4e90 100644 --- a/README.md +++ b/README.md @@ -108,6 +108,7 @@ To upgrade to the latest version (see setting up application section) : `docker ## Versions ++ **09.12.17:** Fix continuation lines. + **12.07.17:** Add inspect commands to README, move to jenkins build and push. + **28.05.17:** Add unrar package as per requests, for subzero plugin. + **11.01.17:** Use Plex environemt variables from pms docker,