Skip to content
This repository was archived by the owner on Jan 7, 2024. It is now read-only.

Commit 2b33c09

Browse files
authored
Merge pull request #38 from linuxserver/continuation_lines
fix continuation lines xenial
2 parents a135beb + 04a01e5 commit 2b33c09

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

Dockerfile

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,34 +4,32 @@ FROM lsiobase/xenial
44
ARG BUILD_DATE
55
ARG VERSION
66
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
7+
LABEL maintainer="sparklyballs"
78

89
# package versions
910
ARG UNIFI_VER="5.6.22"
1011

1112
# environment settings
1213
ARG DEBIAN_FRONTEND="noninteractive"
1314

14-
# add mongo repo
1515
RUN \
16+
echo "**** add mongo repository ****" && \
1617
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 0C49F3730359A14518585931BC711F9BA15703C6 && \
1718
echo "deb [ arch=amd64,arm64 ] http://repo.mongodb.org/apt/ubuntu xenial/mongodb-org/3.4 multiverse" >> /etc/apt/sources.list.d/mongo.list && \
18-
19-
# install packages
19+
echo "**** install packages ****" && \
2020
apt-get update && \
2121
apt-get install -y \
2222
binutils \
2323
jsvc \
2424
mongodb-org-server \
2525
openjdk-8-jre-headless \
2626
wget && \
27-
28-
# install unifi
27+
echo "**** install unifi ****" && \
2928
curl -o \
3029
/tmp/unifi.deb -L \
3130
"http://dl.ubnt.com/unifi/${UNIFI_VER}/unifi_sysvinit_all.deb" && \
3231
dpkg -i /tmp/unifi.deb && \
33-
34-
# cleanup
32+
echo "**** cleanup ****" && \
3533
apt-get clean && \
3634
rm -rf \
3735
/tmp/* \

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ Use `ubnt` as the password to login and `$address` is the IP address of the host
9999

100100
## Versions
101101

102+
+ **09.12.17:** Fix continuation lines.
102103
+ **12.11.17:** Add STUN server port 3478 mapping to example.
103104
+ **11.11.17:** Update to 5.6.22.
104105
+ **22.10.17:** Fix typos in Dockerfile and cert gen.

0 commit comments

Comments
 (0)