aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Crute <mike@crute.us>2023-11-18 09:35:12 -0800
committerMike Crute <mike@crute.us>2023-11-18 09:35:12 -0800
commit5fd5cdfb5a8571d1c989501e5edcabbd24eef230 (patch)
tree57b2f72e97d3209977da4abf77144662129913a7
parent370e1a75b33d205cf89f9e792179f5c9331499bf (diff)
downloaddockerfiles-5fd5cdfb5a8571d1c989501e5edcabbd24eef230.tar.bz2
dockerfiles-5fd5cdfb5a8571d1c989501e5edcabbd24eef230.tar.xz
dockerfiles-5fd5cdfb5a8571d1c989501e5edcabbd24eef230.zip
unifi: upgrade to 8.0.7
-rw-r--r--unifi/Dockerfile7
-rw-r--r--unifi/Makefile6
-rw-r--r--unifi/simplevisor.json1
3 files changed, 5 insertions, 9 deletions
diff --git a/unifi/Dockerfile b/unifi/Dockerfile
index 208d05b..b04fd2d 100644
--- a/unifi/Dockerfile
+++ b/unifi/Dockerfile
@@ -22,13 +22,8 @@ RUN set -euxo pipefail; \
22 dumb-init \ 22 dumb-init \
23 java-snappy \ 23 java-snappy \
24 libcap \ 24 libcap \
25# Alpine moved this to non-free which doesn't get published so we'll have to
26# build our own repo for mongodb if needed. This should not be needed for
27# Mike's config since he uses out-of-container mongodb.
28# mongodb \
29 mongodb-tools \
30 nss \ 25 nss \
31 openjdk11-jre-headless \ 26 openjdk17-jre-headless \
32 su-exec \ 27 su-exec \
33 \ 28 \
34 # Fetch the Unifi package and validate the checksum before unpacking 29 # Fetch the Unifi package and validate the checksum before unpacking
diff --git a/unifi/Makefile b/unifi/Makefile
index feded0a..36f0327 100644
--- a/unifi/Makefile
+++ b/unifi/Makefile
@@ -1,11 +1,11 @@
1VERSION=7.4.162 1VERSION=8.0.7
2VERSION_SUFFIX=-3116043f9f 2VERSION_SUFFIX=-7a3d06144a
3VERSION_TAG=$(VERSION)-0 3VERSION_TAG=$(VERSION)-0
4IMAGE=docker.crute.me/unifi:$(VERSION_TAG) 4IMAGE=docker.crute.me/unifi:$(VERSION_TAG)
5LATEST=$(subst :$(VERSION_TAG),,$(IMAGE)):latest 5LATEST=$(subst :$(VERSION_TAG),,$(IMAGE)):latest
6 6
7DEB_VERSION="$(VERSION)$(VERSION_SUFFIX)" 7DEB_VERSION="$(VERSION)$(VERSION_SUFFIX)"
8CHECKSUM="069652f793498124468c985537a569f3fe1d8dd404be3fb69df6b2d18b153c4c" 8CHECKSUM="4221d7a0f8ce66c58a4f71b70ba6f32e16310429d3fe8165bf0f47bbdb6401a6"
9 9
10all: 10all:
11 docker pull alpine:latest 11 docker pull alpine:latest
diff --git a/unifi/simplevisor.json b/unifi/simplevisor.json
index 0d8ed76..566c872 100644
--- a/unifi/simplevisor.json
+++ b/unifi/simplevisor.json
@@ -43,6 +43,7 @@
43 "-Djava.awt.headless=true", 43 "-Djava.awt.headless=true",
44 "-Dorg.xerial.snappy.use.systemlib=true", 44 "-Dorg.xerial.snappy.use.systemlib=true",
45 "-Dfile.encoding=UTF-8", 45 "-Dfile.encoding=UTF-8",
46 "--add-opens=java.base/java.time=ALL-UNNAMED",
46 "com.ubnt.ace.Launcher", "start" 47 "com.ubnt.ace.Launcher", "start"
47 ], 48 ],
48 "run-as": "unifi" 49 "run-as": "unifi"