Skip to content

Commit 8a75600

Browse files
authored
Merge branch 'main' into sh
2 parents dd353fc + 1b5ea69 commit 8a75600

File tree

7 files changed

+342
-363
lines changed

7 files changed

+342
-363
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1
22

3-
FROM ghcr.io/linuxserver/baseimage-ubuntu:jammy
3+
FROM ghcr.io/linuxserver/baseimage-ubuntu:noble
44

55
# set version label
66
ARG BUILD_DATE
@@ -34,6 +34,7 @@ RUN \
3434
"https://dl.ui.com/unifi/${UNIFI_VERSION}/UniFi.unix.zip" && \
3535
unzip /tmp/unifi.zip -d /usr/lib && \
3636
mv /usr/lib/UniFi /usr/lib/unifi && \
37+
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
3738
echo "**** cleanup ****" && \
3839
apt-get clean && \
3940
rm -rf \

Dockerfile.aarch64

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1
22

3-
FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-jammy
3+
FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-noble
44

55
# set version label
66
ARG BUILD_DATE
@@ -34,6 +34,7 @@ RUN \
3434
"https://dl.ui.com/unifi/${UNIFI_VERSION}/UniFi.unix.zip" && \
3535
unzip /tmp/unifi.zip -d /usr/lib && \
3636
mv /usr/lib/UniFi /usr/lib/unifi && \
37+
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
3738
echo "**** cleanup ****" && \
3839
apt-get clean && \
3940
rm -rf \

Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ pipeline {
3131
CI_PORT='8443'
3232
CI_SSL='true'
3333
CI_DELAY='180'
34-
CI_DOCKERENV='TZ=US/Pacific'
35-
CI_AUTH='user:password'
34+
CI_DOCKERENV=''
35+
CI_AUTH=''
3636
CI_WEBPATH=''
3737
}
3838
stages {

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,8 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
415415

416416
## Versions
417417

418-
* **07.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.
418+
* **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.
419+
* **11.08.24:** - Rebase to Ubuntu Noble.
419420
* **04.03.24:** - Install from zip package instead of deb.
420421
* **17.10.23:** - Add environment variables for TLS and authSource to support Atlas and new MongoDB versions.
421422
* **05.09.23:** - Initial release.

jenkins-vars.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ repo_vars:
2222
- CI_PORT='8443'
2323
- CI_SSL='true'
2424
- CI_DELAY='180'
25-
- CI_DOCKERENV='TZ=US/Pacific'
26-
- CI_AUTH='user:password'
25+
- CI_DOCKERENV=''
26+
- CI_AUTH=''
2727
- CI_WEBPATH=''

package_versions.txt

Lines changed: 330 additions & 352 deletions
Large diffs are not rendered by default.

readme-vars.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ available_architectures:
1212
- { arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
1313
- { arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
1414

15-
# development version
16-
development_versions: false
17-
1815
# container parameters
1916
param_container_name: "{{ project_name }}"
2017
param_usage_include_vols: true
@@ -148,7 +145,8 @@ app_setup_block: |
148145
149146
# changelog
150147
changelogs:
151-
- { date: "07.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." }
148+
- { 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." }
149+
- { date: "11.08.24:", desc: "Rebase to Ubuntu Noble." }
152150
- { date: "04.03.24:", desc: "Install from zip package instead of deb." }
153151
- { date: "17.10.23:", desc: "Add environment variables for TLS and authSource to support Atlas and new MongoDB versions." }
154152
- { date: "05.09.23:", desc: "Initial release." }

0 commit comments

Comments
 (0)