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

Commit 4dde84e

Browse files
committed
Update deps for 7.5+
1 parent b51c821 commit 4dde84e

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ RUN \
2121
jsvc \
2222
libcap2 \
2323
logrotate \
24-
openjdk-11-jre-headless && \
24+
openjdk-17-jre-headless && \
2525
echo "**** install unifi ****" && \
2626
if [ -z ${UNIFI_VERSION+x} ]; then \
2727
UNIFI_VERSION=$(curl -sX GET http://dl-origin.ubnt.com/unifi/debian/dists/${UNIFI_BRANCH}/ubiquiti/binary-amd64/Packages \

Dockerfile.aarch64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ RUN \
2121
jsvc \
2222
libcap2 \
2323
logrotate \
24-
openjdk-11-jre-headless && \
24+
openjdk-17-jre-headless && \
2525
echo "**** install unifi ****" && \
2626
if [ -z ${UNIFI_VERSION+x} ]; then \
2727
UNIFI_VERSION=$(curl -sX GET http://dl-origin.ubnt.com/unifi/debian/dists/${UNIFI_BRANCH}/ubiquiti/binary-amd64/Packages \

readme-vars.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ app_setup_block: |
8989
9090
# changelog
9191
changelogs:
92+
- { date: "04.09.23:", desc: "Bump mongodb to 4.4 and JRE to 17 to support v7.5."}
9293
- { date: "04.05.23:", desc: "Cleanup `apt-get install` during build to reduce image size."}
9394
- { date: "18.03.23:", desc: "Add mongoless branch."}
9495
- { date: "20.02.23:", desc: "Migrate to s6v3, install deb package on build, fix permissions."}

root/etc/s6-overlay/s6-rc.d/svc-unifi-controller/run

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ fi
88
if [[ -z ${MEM_STARTUP} ]] || [[ ${MEM_STARTUP} = "default" ]]; then
99
exec \
1010
s6-notifyoncheck -d -n 600 -w 1000 \
11-
cd /config s6-setuidgid abc java -Xmx"${MEM_LIMIT}M" -Dlog4j2.formatMsgNoLookups=true -jar /usr/lib/unifi/lib/ace.jar start;
11+
cd /config s6-setuidgid abc java -Xmx"${MEM_LIMIT}M" -Dlog4j2.formatMsgNoLookups=true --add-opens=java.base/java.time=ALL-UNNAMED -jar /usr/lib/unifi/lib/ace.jar start;
1212
else
1313
exec \
1414
s6-notifyoncheck -d -n 600 -w 1000 \
15-
cd /config s6-setuidgid abc java -Xms"${MEM_STARTUP}M" -Xmx"${MEM_LIMIT}M" -Dlog4j2.formatMsgNoLookups=true -jar /usr/lib/unifi/lib/ace.jar start;
15+
cd /config s6-setuidgid abc java -Xms"${MEM_STARTUP}M" -Xmx"${MEM_LIMIT}M" -Dlog4j2.formatMsgNoLookups=true --add-opens=java.base/java.time=ALL-UNNAMED -jar /usr/lib/unifi/lib/ace.jar start;
1616
fi

0 commit comments

Comments
 (0)