mirror of
https://github.com/linuxserver/docker-unifi-network-application.git
synced 2025-03-05 20:59:58 -08:00
Compare commits
3 commits
281e66d087
...
bb63097922
Author | SHA1 | Date | |
---|---|---|---|
|
bb63097922 | ||
|
82d65a552c | ||
|
2654f2d68b |
|
@ -1,6 +1,6 @@
|
|||
# syntax=docker/dockerfile:1
|
||||
|
||||
FROM ghcr.io/linuxserver/baseimage-ubuntu:jammy
|
||||
FROM ghcr.io/linuxserver/baseimage-ubuntu:noble
|
||||
|
||||
# set version label
|
||||
ARG BUILD_DATE
|
||||
|
@ -34,6 +34,7 @@ RUN \
|
|||
"https://dl.ui.com/unifi/${UNIFI_VERSION}/UniFi.unix.zip" && \
|
||||
unzip /tmp/unifi.zip -d /usr/lib && \
|
||||
mv /usr/lib/UniFi /usr/lib/unifi && \
|
||||
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
|
||||
echo "**** cleanup ****" && \
|
||||
apt-get clean && \
|
||||
rm -rf \
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# syntax=docker/dockerfile:1
|
||||
|
||||
FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-jammy
|
||||
FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-noble
|
||||
|
||||
# set version label
|
||||
ARG BUILD_DATE
|
||||
|
@ -34,6 +34,7 @@ RUN \
|
|||
"https://dl.ui.com/unifi/${UNIFI_VERSION}/UniFi.unix.zip" && \
|
||||
unzip /tmp/unifi.zip -d /usr/lib && \
|
||||
mv /usr/lib/UniFi /usr/lib/unifi && \
|
||||
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
|
||||
echo "**** cleanup ****" && \
|
||||
apt-get clean && \
|
||||
rm -rf \
|
||||
|
|
4
Jenkinsfile
vendored
4
Jenkinsfile
vendored
|
@ -31,8 +31,8 @@ pipeline {
|
|||
CI_PORT='8443'
|
||||
CI_SSL='true'
|
||||
CI_DELAY='180'
|
||||
CI_DOCKERENV='TZ=US/Pacific'
|
||||
CI_AUTH='user:password'
|
||||
CI_DOCKERENV=''
|
||||
CI_AUTH=''
|
||||
CI_WEBPATH=''
|
||||
}
|
||||
stages {
|
||||
|
|
|
@ -422,6 +422,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
|
|||
|
||||
## Versions
|
||||
|
||||
* **18.07.24:** - Rebase to Ubuntu Noble.
|
||||
* **04.03.24:** - Install from zip package instead of deb.
|
||||
* **17.10.23:** - Add environment variables for TLS and authSource to support Atlas and new MongoDB versions.
|
||||
* **05.09.23:** - Initial release.
|
||||
|
|
|
@ -22,6 +22,6 @@ repo_vars:
|
|||
- CI_PORT='8443'
|
||||
- CI_SSL='true'
|
||||
- CI_DELAY='180'
|
||||
- CI_DOCKERENV='TZ=US/Pacific'
|
||||
- CI_AUTH='user:password'
|
||||
- CI_DOCKERENV=''
|
||||
- CI_AUTH=''
|
||||
- CI_WEBPATH=''
|
||||
|
|
|
@ -143,7 +143,7 @@ jmdns 3.4.1
|
|||
jna 5.12.1 java-archive
|
||||
joda-time 2.10.4 java-archive
|
||||
jq 1.6-2.1ubuntu3 deb
|
||||
jrt-fs 17.0.11 java-archive
|
||||
jrt-fs 17.0.12 java-archive
|
||||
json 20231013 java-archive
|
||||
jsr305 3.0.1 java-archive
|
||||
jsr305 3.0.2 java-archive
|
||||
|
@ -204,8 +204,8 @@ libkrb5-3 1.19.2-2ubuntu0.3
|
|||
libkrb5support0 1.19.2-2ubuntu0.3 deb
|
||||
libksba8 1.6.0-2ubuntu0.2 deb
|
||||
liblcms2-2 2.12~rc1-2build2 deb
|
||||
libldap-2.5-0 2.5.18+dfsg-0ubuntu0.22.04.1 deb
|
||||
libldap-common 2.5.18+dfsg-0ubuntu0.22.04.1 deb
|
||||
libldap-2.5-0 2.5.18+dfsg-0ubuntu0.22.04.2 deb
|
||||
libldap-common 2.5.18+dfsg-0ubuntu0.22.04.2 deb
|
||||
liblz4-1 1.9.3-2build2 deb
|
||||
liblzma5 5.2.5-2ubuntu1 deb
|
||||
libmd0 1.0.4-1build1 deb
|
||||
|
@ -280,7 +280,7 @@ ncurses-base 6.3-2ubuntu0.1
|
|||
ncurses-bin 6.3-2ubuntu0.1 deb
|
||||
netcat 1.218-4ubuntu1 deb
|
||||
netcat-openbsd 1.218-4ubuntu1 deb
|
||||
openjdk-17-jre-headless 17.0.11+9-1~22.04.1 deb
|
||||
openjdk-17-jre-headless 17.0.12+7-1ubuntu2~22.04 deb
|
||||
openssh 1.0 java-archive
|
||||
openssl 3.0.2-0ubuntu1.16 deb
|
||||
org.eclipse.paho.client.mqttv3 1.1.0 java-archive
|
||||
|
|
|
@ -12,9 +12,6 @@ available_architectures:
|
|||
- { arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
|
||||
- { arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
|
||||
|
||||
# development version
|
||||
development_versions: false
|
||||
|
||||
# container parameters
|
||||
param_container_name: "{{ project_name }}"
|
||||
param_usage_include_vols: true
|
||||
|
@ -155,6 +152,7 @@ app_setup_block: |
|
|||
|
||||
# changelog
|
||||
changelogs:
|
||||
- { date: "18.07.24:", desc: "Rebase to Ubuntu Noble." }
|
||||
- { date: "04.03.24:", desc: "Install from zip package instead of deb." }
|
||||
- { date: "17.10.23:", desc: "Add environment variables for TLS and authSource to support Atlas and new MongoDB versions." }
|
||||
- { date: "05.09.23:", desc: "Initial release." }
|
||||
|
|
Loading…
Reference in a new issue