File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11FROM lsiobase/xenial
2- MAINTAINER Stian Larsen, sparklyballs
32
43# set version label
54ARG BUILD_DATE
65ARG VERSION
76LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
7+ LABEL maintainer="stian larsen,sparklyballs"
88
99# global environment settings
1010ENV DEBIAN_FRONTEND="noninteractive" \
@@ -16,25 +16,22 @@ PLEX_MEDIA_SERVER_INFO_DEVICE=docker \
1616PLEX_MEDIA_SERVER_MAX_PLUGIN_PROCS="6" \
1717PLEX_MEDIA_SERVER_USER=abc
1818
19- # install packages
2019RUN \
20+ echo "**** install packages ****" && \
2121 apt-get update && \
2222 apt-get install -y \
2323 avahi-daemon \
2424 dbus \
2525 unrar \
2626 wget && \
27-
28- # install plex
27+ echo "**** install plex ****" && \
2928 curl -o \
3029 /tmp/plexmediaserver.deb -L \
3130 "${PLEX_INSTALL}" && \
3231 dpkg -i /tmp/plexmediaserver.deb && \
33-
34- # change abc home folder to fix plex hanging at runtime with usermod
32+ echo "**** change abc home folder to fix plex hanging at runtime with usermod ****" && \
3533 usermod -d /app abc && \
36-
37- # cleanup
34+ echo "**** cleanup ****" && \
3835 apt-get clean && \
3936 rm -rf \
4037 /etc/default/plexmediaserver \
Original file line number Diff line number Diff line change @@ -108,6 +108,7 @@ To upgrade to the latest version (see setting up application section) : `docker
108108
109109## Versions
110110
111+ + ** 09.12.17:** Fix continuation lines.
111112+ ** 12.07.17:** Add inspect commands to README, move to jenkins build and push.
112113+ ** 28.05.17:** Add unrar package as per requests, for subzero plugin.
113114+ ** 11.01.17:** Use Plex environemt variables from pms docker,
You can’t perform that action at this time.
0 commit comments