-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create 9.0/official - v9.0.108, Promote 9.0 official to latest, Tag 9…
….0.108 release
- Loading branch information
1 parent
cb99c7f
commit c1e6c98
Showing
21 changed files
with
1,042 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ on: | |
branches: | ||
- main | ||
paths: | ||
- 8.6/official/** | ||
- 9.0/official/** | ||
- .github/workflows/build-latest.yml | ||
|
||
jobs: | ||
|
@@ -19,7 +19,7 @@ jobs: | |
- | ||
name: Set up dynamic build ARGs | ||
id: getargs | ||
run: echo "version=$(cat ./8.6/official/VERSION)" >> $GITHUB_OUTPUT | ||
run: echo "version=$(cat ./9.0/official/VERSION)" >> $GITHUB_OUTPUT | ||
- | ||
name: Set up Docker metadata for Alpine | ||
id: meta-alpine | ||
|
@@ -30,7 +30,7 @@ jobs: | |
ghcr.io/${{ github.repository }} | ||
tags: | | ||
type=raw,latest-alpine | ||
type=raw,8.6-alpine | ||
type=raw,9.0-alpine | ||
labels: | | ||
org.opencontainers.image.vendor=The Goofball - [email protected] | ||
org.opencontainers.image.title=UniFi Controller | ||
|
@@ -46,7 +46,7 @@ jobs: | |
ghcr.io/${{ github.repository }} | ||
tags: | | ||
type=raw,latest-debian | ||
type=raw,8.6-debian | ||
type=raw,9.0-debian | ||
labels: | | ||
org.opencontainers.image.vendor=The Goofball - [email protected] | ||
org.opencontainers.image.title=UniFi Controller | ||
|
@@ -62,9 +62,9 @@ jobs: | |
ghcr.io/${{ github.repository }} | ||
tags: | | ||
type=raw,latest | ||
type=raw,8.6 | ||
type=raw,9.0 | ||
type=raw,latest-ubuntu | ||
type=raw,8.6-ubuntu | ||
type=raw,9.0-ubuntu | ||
labels: | | ||
org.opencontainers.image.vendor=The Goofball - [email protected] | ||
org.opencontainers.image.title=UniFi Controller | ||
|
@@ -93,8 +93,8 @@ jobs: | |
name: Build and push Alpine Docker image | ||
uses: docker/build-push-action@v6 | ||
with: | ||
context: ./8.6/official | ||
file: ./8.6/official/Dockerfile.alpine | ||
context: ./9.0/official | ||
file: ./9.0/official/Dockerfile.alpine | ||
platforms: linux/amd64,linux/arm64 | ||
push: ${{ github.event_name != 'pull_request' }} | ||
tags: ${{ steps.meta-alpine.outputs.tags }} | ||
|
@@ -104,8 +104,8 @@ jobs: | |
name: Build and push Debian Docker image | ||
uses: docker/build-push-action@v6 | ||
with: | ||
context: ./8.6/official | ||
file: ./8.6/official/Dockerfile.debian | ||
context: ./9.0/official | ||
file: ./9.0/official/Dockerfile.debian | ||
platforms: linux/amd64 | ||
push: ${{ github.event_name != 'pull_request' }} | ||
tags: ${{ steps.meta-debian.outputs.tags }} | ||
|
@@ -115,8 +115,8 @@ jobs: | |
name: Build and push Ubuntu Docker image | ||
uses: docker/build-push-action@v6 | ||
with: | ||
context: ./8.6/official | ||
file: ./8.6/official/Dockerfile | ||
context: ./9.0/official | ||
file: ./9.0/official/Dockerfile | ||
platforms: linux/amd64,linux/arm64 | ||
push: ${{ github.event_name != 'pull_request' }} | ||
tags: ${{ steps.meta-ubuntu.outputs.tags }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,8 @@ on: | |
branches: | ||
- main | ||
paths: | ||
- 8.5/official/** | ||
- .github/workflows/build-8.5-official.yml | ||
- 8.6/official/** | ||
- .github/workflows/build-8.6-official.yml | ||
|
||
jobs: | ||
build: | ||
|
@@ -19,7 +19,7 @@ jobs: | |
- | ||
name: Set up dynamic build ARGs | ||
id: getargs | ||
run: echo "version=$(cat ./8.5/official/VERSION)" >> $GITHUB_OUTPUT | ||
run: echo "version=$(cat ./8.6/official/VERSION)" >> $GITHUB_OUTPUT | ||
- | ||
name: Set up Docker metadata for Alpine | ||
id: meta-alpine | ||
|
@@ -29,7 +29,7 @@ jobs: | |
${{ github.repository }} | ||
ghcr.io/${{ github.repository }} | ||
tags: | | ||
type=raw,8.5-alpine | ||
type=raw,8.6-alpine | ||
labels: | | ||
org.opencontainers.image.vendor=The Goofball - [email protected] | ||
org.opencontainers.image.title=UniFi Controller | ||
|
@@ -44,7 +44,7 @@ jobs: | |
${{ github.repository }} | ||
ghcr.io/${{ github.repository }} | ||
tags: | | ||
type=raw,8.5-debian | ||
type=raw,8.6-debian | ||
labels: | | ||
org.opencontainers.image.vendor=The Goofball - [email protected] | ||
org.opencontainers.image.title=UniFi Controller | ||
|
@@ -59,8 +59,8 @@ jobs: | |
${{ github.repository }} | ||
ghcr.io/${{ github.repository }} | ||
tags: | | ||
type=raw,8.5 | ||
type=raw,8.5-ubuntu | ||
type=raw,8.6 | ||
type=raw,8.6-ubuntu | ||
labels: | | ||
org.opencontainers.image.vendor=The Goofball - [email protected] | ||
org.opencontainers.image.title=UniFi Controller | ||
|
@@ -89,8 +89,8 @@ jobs: | |
name: Build and push Alpine Docker image | ||
uses: docker/build-push-action@v6 | ||
with: | ||
context: ./8.5/official | ||
file: ./8.5/official/Dockerfile.alpine | ||
context: ./8.6/official | ||
file: ./8.6/official/Dockerfile.alpine | ||
platforms: linux/amd64,linux/arm64 | ||
push: ${{ github.event_name != 'pull_request' }} | ||
tags: ${{ steps.meta-alpine.outputs.tags }} | ||
|
@@ -100,8 +100,8 @@ jobs: | |
name: Build and push Debian Docker image | ||
uses: docker/build-push-action@v6 | ||
with: | ||
context: ./8.5/official | ||
file: ./8.5/official/Dockerfile.debian | ||
context: ./8.6/official | ||
file: ./8.6/official/Dockerfile.debian | ||
platforms: linux/amd64 | ||
push: ${{ github.event_name != 'pull_request' }} | ||
tags: ${{ steps.meta-debian.outputs.tags }} | ||
|
@@ -111,8 +111,8 @@ jobs: | |
name: Build and push Ubuntu Docker image | ||
uses: docker/build-push-action@v6 | ||
with: | ||
context: ./8.5/official | ||
file: ./8.5/official/Dockerfile | ||
context: ./8.6/official | ||
file: ./8.6/official/Dockerfile | ||
platforms: linux/amd64,linux/arm64 | ||
push: ${{ github.event_name != 'pull_request' }} | ||
tags: ${{ steps.meta-ubuntu.outputs.tags }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
FROM ubuntu:20.04 | ||
|
||
ARG BUILD_DATE | ||
ARG VCS_REF | ||
ARG VERSION | ||
|
||
LABEL \ | ||
org.opencontainers.image.vendor="The Goofball - [email protected]" \ | ||
org.opencontainers.image.url="https://github.com/goofball222/unifi" \ | ||
org.opencontainers.image.title="UniFi Controller" \ | ||
org.opencontainers.image.description="UniFi Controller" \ | ||
org.opencontainers.image.version=${VERSION}-Ubuntu \ | ||
org.opencontainers.image.source="https://github.com/goofball222/unifi" \ | ||
org.opencontainers.image.revision=${VCS_REF} \ | ||
org.opencontainers.image.created=${BUILD_DATE} \ | ||
org.opencontainers.image.licenses="Apache-2.0" | ||
|
||
ENV \ | ||
BIND_PRIV=false \ | ||
DEBIAN_FRONTEND=noninteractive \ | ||
DEBUG=false \ | ||
JVM_EXTRA_OPTS= \ | ||
JVM_INIT_HEAP_SIZE= \ | ||
JVM_MAX_HEAP_SIZE=1024M \ | ||
PGID=999 \ | ||
PUID=999 \ | ||
RUN_CHOWN=true \ | ||
RUNAS_UID0=false | ||
|
||
WORKDIR /usr/lib/unifi | ||
|
||
COPY root / | ||
|
||
RUN set -x \ | ||
&& groupadd -r unifi -g $PGID \ | ||
&& useradd --no-log-init -r -u $PUID -g $PGID unifi \ | ||
&& apt-get -y update \ | ||
&& apt-get -y install apt-utils \ | ||
&& apt-get -y --no-install-recommends install \ | ||
binutils curl dirmngr \ | ||
gosu libcap2 libcap2-bin \ | ||
procps tzdata \ | ||
&& apt-get -y --no-install-recommends install \ | ||
ca-certificates-java openjdk-17-jre-headless \ | ||
&& apt-get -y --no-install-recommends install \ | ||
mongodb-server-core \ | ||
&& rm -rf /usr/bin/mongos \ | ||
&& curl -sSL https://dl.ui.com/unifi/${VERSION}/unifi_sysvinit_all.deb -o /tmp/unifi-${VERSION}.deb \ | ||
&& apt-get -y purge \ | ||
dirmngr \ | ||
&& apt-get -y autoremove --purge \ | ||
&& apt-get -y clean autoclean \ | ||
&& dpkg --force-all -i /tmp/unifi-${VERSION}.deb \ | ||
&& rm -rf data logs run \ | ||
&& bash -c 'mkdir -p {data,logs,run,cert}' \ | ||
&& chown -R unifi:unifi /usr/lib/unifi \ | ||
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /var/log/* | ||
|
||
EXPOSE 3478/udp 6789/tcp 8080/tcp 8443/tcp 8843/tcp 8880/tcp 10001/udp | ||
|
||
VOLUME ["/usr/lib/unifi/cert", "/usr/lib/unifi/data", "/usr/lib/unifi/logs"] | ||
|
||
HEALTHCHECK --start-period=2m CMD /usr/local/bin/docker-healthcheck.sh | ||
|
||
ENTRYPOINT ["docker-entrypoint.sh"] | ||
|
||
CMD ["unifi"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
FROM alpine:latest | ||
|
||
ARG BUILD_DATE | ||
ARG VCS_REF | ||
ARG VERSION | ||
|
||
LABEL \ | ||
org.opencontainers.image.vendor="The Goofball - [email protected]" \ | ||
org.opencontainers.image.url="https://github.com/goofball222/unifi" \ | ||
org.opencontainers.image.title="UniFi Controller" \ | ||
org.opencontainers.image.description="UniFi Controller" \ | ||
org.opencontainers.image.version=${VERSION}-Alpine \ | ||
org.opencontainers.image.source="https://github.com/goofball222/unifi" \ | ||
org.opencontainers.image.revision=${VCS_REF} \ | ||
org.opencontainers.image.created=${BUILD_DATE} \ | ||
org.opencontainers.image.licenses="Apache-2.0" | ||
|
||
ENV \ | ||
BIND_PRIV=false \ | ||
DEBUG=false \ | ||
JVM_EXTRA_OPTS= \ | ||
JVM_INIT_HEAP_SIZE= \ | ||
JVM_MAX_HEAP_SIZE=1024M \ | ||
PGID=999 \ | ||
PUID=999 \ | ||
RUN_CHOWN=true \ | ||
RUNAS_UID0=false | ||
|
||
WORKDIR /usr/lib/unifi | ||
|
||
COPY root / | ||
|
||
RUN set -x \ | ||
&& delgroup ping \ | ||
&& addgroup -g $PGID unifi \ | ||
&& adduser -D -G unifi -u $PUID unifi \ | ||
&& apk add -q --no-cache \ | ||
gcompat libc6-compat \ | ||
&& apk add -q --no-cache \ | ||
bash binutils coreutils curl libcap \ | ||
openjdk17-jre openssl shadow su-exec \ | ||
tzdata \ | ||
&& curl -sSL https://dl.ui.com/unifi/${VERSION}/UniFi.unix.zip -o /tmp/UniFi.unix.${VERSION}.zip \ | ||
&& unzip -q /tmp/UniFi.unix.${VERSION}.zip -d /tmp \ | ||
&& mv /tmp/UniFi/* /usr/lib/unifi/ \ | ||
&& bash -c 'mkdir -p {data,logs,run,cert}' \ | ||
&& chown -R unifi:unifi /usr/lib/unifi \ | ||
&& rm -rf /tmp/* /var/tmp/* /var/cache/apk/* | ||
|
||
EXPOSE 3478/udp 6789/tcp 8080/tcp 8443/tcp 8843/tcp 8880/tcp 10001/udp | ||
|
||
VOLUME ["/usr/lib/unifi/cert", "/usr/lib/unifi/data", "/usr/lib/unifi/logs"] | ||
|
||
HEALTHCHECK --start-period=2m CMD /usr/local/bin/docker-healthcheck.sh | ||
|
||
ENTRYPOINT ["docker-entrypoint.sh"] | ||
|
||
CMD ["unifi"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
FROM alpine:latest | ||
|
||
ARG BUILD_DATE | ||
ARG VCS_REF | ||
ARG VERSION | ||
|
||
LABEL \ | ||
org.opencontainers.image.vendor="The Goofball - [email protected]" \ | ||
org.opencontainers.image.url="https://github.com/goofball222/unifi" \ | ||
org.opencontainers.image.title="UniFi Controller" \ | ||
org.opencontainers.image.description="UniFi Controller" \ | ||
org.opencontainers.image.version=${VERSION}-Alpine.mongo \ | ||
org.opencontainers.image.source="https://github.com/goofball222/unifi" \ | ||
org.opencontainers.image.revision=${VCS_REF} \ | ||
org.opencontainers.image.created=${BUILD_DATE} \ | ||
org.opencontainers.image.licenses="Apache-2.0" | ||
|
||
ENV \ | ||
BIND_PRIV=false \ | ||
DEBUG=false \ | ||
JVM_EXTRA_OPTS= \ | ||
JVM_INIT_HEAP_SIZE= \ | ||
JVM_MAX_HEAP_SIZE=1024M \ | ||
PGID=999 \ | ||
PUID=999 \ | ||
RUN_CHOWN=true \ | ||
RUNAS_UID0=false | ||
|
||
WORKDIR /usr/lib/unifi | ||
|
||
COPY root / | ||
|
||
RUN set -x \ | ||
&& delgroup ping \ | ||
&& addgroup -g $PGID unifi \ | ||
&& adduser -D -G unifi -u $PUID unifi \ | ||
&& apk add -q --no-cache \ | ||
gcompat libc6-compat \ | ||
&& apk add -q --no-cache \ | ||
bash binutils coreutils curl libcap \ | ||
mongodb openjdk17-jre openssl shadow su-exec \ | ||
tzdata \ | ||
&& curl -sSL https://dl.ui.com/unifi/${VERSION}/UniFi.unix.zip -o /tmp/UniFi.unix.${VERSION}.zip \ | ||
&& unzip -q /tmp/UniFi.unix.${VERSION}.zip -d /tmp \ | ||
&& mv /tmp/UniFi/* /usr/lib/unifi/ \ | ||
&& bash -c 'mkdir -p {data,logs,run,cert}' \ | ||
&& chown -R unifi:unifi /usr/lib/unifi \ | ||
&& rm /usr/lib/unifi/bin/mongod \ | ||
&& ln -s /usr/bin/mongod /usr/lib/unifi/bin/mongod \ | ||
&& rm -rf /tmp/* /var/tmp/* /var/cache/apk/* | ||
|
||
EXPOSE 3478/udp 6789/tcp 8080/tcp 8443/tcp 8843/tcp 8880/tcp 10001/udp | ||
|
||
VOLUME ["/usr/lib/unifi/cert", "/usr/lib/unifi/data", "/usr/lib/unifi/logs"] | ||
|
||
HEALTHCHECK --start-period=2m CMD /usr/local/bin/docker-healthcheck.sh | ||
|
||
ENTRYPOINT ["docker-entrypoint.sh"] | ||
|
||
CMD ["unifi"] |
Oops, something went wrong.