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 +18
-4
lines changed Expand file tree Collapse file tree 2 files changed +18
-4
lines changed Original file line number Diff line number Diff line change @@ -5,19 +5,32 @@ ARG BUILD_DATE
5
5
ARG VERSION
6
6
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
7
7
8
+ # package versions
9
+ ARG UNIFI_VER="5.5.19"
10
+
8
11
# environment settings
9
12
ARG DEBIAN_FRONTEND="noninteractive"
10
13
11
- # install packages
14
+ # add mongo repo
12
15
RUN \
13
- echo "deb http://www.ubnt.com/downloads/unifi/debian stable ubiquiti" >> /etc/apt/sources.list && \
14
- apt-key adv --keyserver keyserver.ubuntu.com --recv C0A52C50 && \
16
+ apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 0C49F3730359A14518585931BC711F9BA15703C6 && \
17
+ 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
15
20
apt-get update && \
16
21
apt-get install -y \
22
+ binutils \
23
+ jsvc \
24
+ mongodb-org-server \
17
25
openjdk-8-jre-headless \
18
- unifi \
19
26
wget && \
20
27
28
+ # install unifi
29
+ curl -o \
30
+ /tmp/unifi.deb -L\
31
+ "http://dl.ubnt.com/unifi/${UNIFI_VER}/unifi_sysvinit_all.deb" && \
32
+ dpkg -i /tmp/unifi.deb && \
33
+
21
34
# cleanup
22
35
apt-get clean && \
23
36
rm -rf \
Original file line number Diff line number Diff line change @@ -95,6 +95,7 @@ Use `ubnt` as the password to login and `$address` is the IP address of the host
95
95
96
96
## Versions
97
97
98
+ + ** 15.07.17:** Update to 5.5.19 and switch to using .deb package, no need to keep up with the unifi repo merry-go-round.
98
99
+ ** 05.07.17:** Change repo to stable. Remove execstack command, no longer required.
99
100
+ ** 18.03.17:** Fix execstack warning.
100
101
+ ** 14.10.16:** Add version layer information.
You can’t perform that action at this time.
0 commit comments