Skip to content

Commit b5707fb

Browse files
authored
Merge pull request #100 from linuxserver/noble
2 parents 82d65a5 + 67605a6 commit b5707fb

File tree

6 files changed

+10
-9
lines changed

6 files changed

+10
-9
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: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -422,6 +422,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
422422

423423
## Versions
424424

425+
* **18.07.24:** - Rebase to Ubuntu Noble.
425426
* **04.03.24:** - Install from zip package instead of deb.
426427
* **17.10.23:** - Add environment variables for TLS and authSource to support Atlas and new MongoDB versions.
427428
* **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=''

readme-vars.yml

Lines changed: 1 addition & 3 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
@@ -155,6 +152,7 @@ app_setup_block: |
155152
156153
# changelog
157154
changelogs:
155+
- { date: "18.07.24:", desc: "Rebase to Ubuntu Noble." }
158156
- { date: "04.03.24:", desc: "Install from zip package instead of deb." }
159157
- { date: "17.10.23:", desc: "Add environment variables for TLS and authSource to support Atlas and new MongoDB versions." }
160158
- { date: "05.09.23:", desc: "Initial release." }

0 commit comments

Comments
 (0)