Skip to content

Commit 158d3f6

Browse files
authored
Merge pull request #121 from linuxserver/continuation_lines
fix continuation lines xenial
2 parents 64c9b72 + 16394b3 commit 158d3f6

2 files changed

Lines changed: 6 additions & 8 deletions

File tree

Dockerfile

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
FROM lsiobase/xenial
2-
MAINTAINER Stian Larsen, sparklyballs
32

43
# set version label
54
ARG BUILD_DATE
65
ARG VERSION
76
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
7+
LABEL maintainer="stian larsen,sparklyballs"
88

99
# global environment settings
1010
ENV DEBIAN_FRONTEND="noninteractive" \
@@ -16,25 +16,22 @@ PLEX_MEDIA_SERVER_INFO_DEVICE=docker \
1616
PLEX_MEDIA_SERVER_MAX_PLUGIN_PROCS="6" \
1717
PLEX_MEDIA_SERVER_USER=abc
1818

19-
# install packages
2019
RUN \
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 \

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)