Skip to content

Commit 6a6235e

Browse files
authored
Merge pull request #126 from linuxserver/jre21
2 parents 9e657bd + e139b0f commit 6a6235e

17 files changed

+8
-4
lines changed

.editorconfig

100755100644
File mode changed.

.github/CONTRIBUTING.md

100755100644
File mode changed.

.github/FUNDING.yml

100755100644
File mode changed.

.github/ISSUE_TEMPLATE/config.yml

100755100644
File mode changed.

.github/ISSUE_TEMPLATE/issue.bug.yml

100755100644
File mode changed.

.github/ISSUE_TEMPLATE/issue.feature.yml

100755100644
File mode changed.

.github/workflows/call_issue_pr_tracker.yml

100755100644
File mode changed.

.github/workflows/call_issues_cron.yml

100755100644
File mode changed.

.github/workflows/external_trigger.yml

100755100644
File mode changed.

.github/workflows/external_trigger_scheduler.yml

100755100644
File mode changed.

.github/workflows/greetings.yml

100755100644
File mode changed.

.github/workflows/package_trigger_scheduler.yml

100755100644
File mode changed.

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN \
1919
apt-get install --no-install-recommends -y \
2020
jsvc \
2121
logrotate \
22-
openjdk-17-jre-headless \
22+
openjdk-21-jre-headless \
2323
unzip && \
2424
echo "**** install unifi ****" && \
2525
if [ -z ${UNIFI_VERSION+x} ]; then \

Dockerfile.aarch64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN \
1919
apt-get install --no-install-recommends -y \
2020
jsvc \
2121
logrotate \
22-
openjdk-17-jre-headless \
22+
openjdk-21-jre-headless \
2323
unzip && \
2424
echo "**** install unifi ****" && \
2525
if [ -z ${UNIFI_VERSION+x} ]; then \

LICENSE

100755100644
File mode changed.

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ After setup, the web UI is available at https://ip:8443. The application can be
6464

6565
### Setting Up Your External Database
6666

67-
Starting with version 8.1 of Unifi Network Application, mongodb 3.6 through 7.0 are supported.
67+
Starting with version 8.1 of Unifi Network Application, mongodb 3.6 through 7.0 are supported. Starting with version 9.0 of Unifi Network Application, mongodb 8.0 is also supported.
6868

6969
**Make sure you pin your database image version and do not use `latest`, as mongodb does not support automatic upgrades between major versions.**
7070

@@ -418,6 +418,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
418418

419419
## Versions
420420

421+
* **12.02.25:** - Bump JRE to 21.
421422
* **11.08.24:** - **Important**: The mongodb init instructions have been updated to enable auth ([RBAC](https://www.mongodb.com/docs/manual/core/authorization/#role-based-access-control)). We have been notified that if RBAC is not enabled, the official mongodb container allows remote access to the db contents over port 27017 without credentials. If you set up the mongodb container with the old instructions we provided, you should not map or expose port 27017. If you would like to enable auth, the easiest way is to create new instances of both unifi and mongodb with the new instructions and restore unifi from a backup.
422423
* **11.08.24:** - Rebase to Ubuntu Noble.
423424
* **04.03.24:** - Install from zip package instead of deb.

readme-vars.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ opt_param_ports:
4343
- {external_port: "8880", internal_port: "8880", port_desc: "Unifi guest portal HTTP redirect port"}
4444
- {external_port: "6789", internal_port: "6789", port_desc: "For mobile throughput test"}
4545
- {external_port: "5514", internal_port: "5514/udp", port_desc: "Remote syslog port"}
46+
readonly_supported: false
47+
nonroot_supported: false
4648
# application setup block
4749
app_setup_block_enabled: true
4850
app_setup_block: |
@@ -52,7 +54,7 @@ app_setup_block: |
5254
5355
### Setting Up Your External Database
5456
55-
Starting with version 8.1 of Unifi Network Application, mongodb 3.6 through 7.0 are supported.
57+
Starting with version 8.1 of Unifi Network Application, mongodb 3.6 through 7.0 are supported. Starting with version 9.0 of Unifi Network Application, mongodb 8.0 is also supported.
5658
5759
**Make sure you pin your database image version and do not use `latest`, as mongodb does not support automatic upgrades between major versions.**
5860
@@ -176,6 +178,7 @@ init_diagram: |
176178
"unifi-network-application:latest" <- Base Images
177179
# changelog
178180
changelogs:
181+
- {date: "12.02.25:", desc: "Bump JRE to 21."}
179182
- {date: "11.08.24:", desc: "**Important**: The mongodb init instructions have been updated to enable auth ([RBAC](https://www.mongodb.com/docs/manual/core/authorization/#role-based-access-control)). We have been notified that if RBAC is not enabled, the official mongodb container allows remote access to the db contents over port 27017 without credentials. If you set up the mongodb container with the old instructions we provided, you should not map or expose port 27017. If you would like to enable auth, the easiest way is to create new instances of both unifi and mongodb with the new instructions and restore unifi from a backup."}
180183
- {date: "11.08.24:", desc: "Rebase to Ubuntu Noble."}
181184
- {date: "04.03.24:", desc: "Install from zip package instead of deb."}

0 commit comments

Comments
 (0)