This repository was archived by the owner on Jan 7, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -4,34 +4,32 @@ FROM lsiobase/xenial
4
4
ARG BUILD_DATE
5
5
ARG VERSION
6
6
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
7
+ LABEL maintainer="sparklyballs"
7
8
8
9
# package versions
9
10
ARG UNIFI_VER="5.6.22"
10
11
11
12
# environment settings
12
13
ARG DEBIAN_FRONTEND="noninteractive"
13
14
14
- # add mongo repo
15
15
RUN \
16
+ echo "**** add mongo repository ****" && \
16
17
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 0C49F3730359A14518585931BC711F9BA15703C6 && \
17
18
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 ****" && \
20
20
apt-get update && \
21
21
apt-get install -y \
22
22
binutils \
23
23
jsvc \
24
24
mongodb-org-server \
25
25
openjdk-8-jre-headless \
26
26
wget && \
27
-
28
- # install unifi
27
+ echo "**** install unifi ****" && \
29
28
curl -o \
30
29
/tmp/unifi.deb -L \
31
30
"http://dl.ubnt.com/unifi/${UNIFI_VER}/unifi_sysvinit_all.deb" && \
32
31
dpkg -i /tmp/unifi.deb && \
33
-
34
- # cleanup
32
+ echo "**** cleanup ****" && \
35
33
apt-get clean && \
36
34
rm -rf \
37
35
/tmp/* \
Original file line number Diff line number Diff line change @@ -99,6 +99,7 @@ Use `ubnt` as the password to login and `$address` is the IP address of the host
99
99
100
100
## Versions
101
101
102
+ + ** 09.12.17:** Fix continuation lines.
102
103
+ ** 12.11.17:** Add STUN server port 3478 mapping to example.
103
104
+ ** 11.11.17:** Update to 5.6.22.
104
105
+ ** 22.10.17:** Fix typos in Dockerfile and cert gen.
You can’t perform that action at this time.
0 commit comments