Skip to content

Commit b070374

Browse files
committed
9.4 official, Update docker-entrypoint.sh
1 parent 2295d6c commit b070374

55 files changed

Lines changed: 1050 additions & 35 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/build-latest.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
branches:
77
- main
88
paths:
9-
- 9.3/official/**
9+
- 9.4/official/**
1010
- .github/workflows/build-latest.yml
1111

1212
jobs:
@@ -19,7 +19,7 @@ jobs:
1919
-
2020
name: Set up dynamic build ARGs
2121
id: getargs
22-
run: echo "version=$(cat ./9.3/official/VERSION)" >> $GITHUB_OUTPUT
22+
run: echo "version=$(cat ./9.4/official/VERSION)" >> $GITHUB_OUTPUT
2323
-
2424
name: Set up Docker metadata for Alpine
2525
id: meta-alpine
@@ -30,7 +30,7 @@ jobs:
3030
ghcr.io/${{ github.repository }}
3131
tags: |
3232
type=raw,latest-alpine
33-
type=raw,9.3-alpine
33+
type=raw,9.4-alpine
3434
labels: |
3535
org.opencontainers.image.vendor=The Goofball - goofball222@gmail.com
3636
org.opencontainers.image.title=UniFi Controller
@@ -46,7 +46,7 @@ jobs:
4646
ghcr.io/${{ github.repository }}
4747
tags: |
4848
type=raw,latest-debian
49-
type=raw,9.3-debian
49+
type=raw,9.4-debian
5050
labels: |
5151
org.opencontainers.image.vendor=The Goofball - goofball222@gmail.com
5252
org.opencontainers.image.title=UniFi Controller
@@ -62,9 +62,9 @@ jobs:
6262
ghcr.io/${{ github.repository }}
6363
tags: |
6464
type=raw,latest
65-
type=raw,9.3
65+
type=raw,9.4
6666
type=raw,latest-ubuntu
67-
type=raw,9.3-ubuntu
67+
type=raw,9.4-ubuntu
6868
labels: |
6969
org.opencontainers.image.vendor=The Goofball - goofball222@gmail.com
7070
org.opencontainers.image.title=UniFi Controller
@@ -93,8 +93,8 @@ jobs:
9393
name: Build and push Alpine Docker image
9494
uses: docker/build-push-action@v6
9595
with:
96-
context: ./9.3/official
97-
file: ./9.3/official/Dockerfile.alpine
96+
context: ./9.4/official
97+
file: ./9.4/official/Dockerfile.alpine
9898
platforms: linux/amd64,linux/arm64
9999
push: ${{ github.event_name != 'pull_request' }}
100100
tags: ${{ steps.meta-alpine.outputs.tags }}
@@ -104,8 +104,8 @@ jobs:
104104
name: Build and push Debian Docker image
105105
uses: docker/build-push-action@v6
106106
with:
107-
context: ./9.3/official
108-
file: ./9.3/official/Dockerfile.debian
107+
context: ./9.4/official
108+
file: ./9.4/official/Dockerfile.debian
109109
platforms: linux/amd64
110110
push: ${{ github.event_name != 'pull_request' }}
111111
tags: ${{ steps.meta-debian.outputs.tags }}
@@ -115,8 +115,8 @@ jobs:
115115
name: Build and push Ubuntu Docker image
116116
uses: docker/build-push-action@v6
117117
with:
118-
context: ./9.3/official
119-
file: ./9.3/official/Dockerfile
118+
context: ./9.4/official
119+
file: ./9.4/official/Dockerfile
120120
platforms: linux/amd64,linux/arm64
121121
push: ${{ github.event_name != 'pull_request' }}
122122
tags: ${{ steps.meta-ubuntu.outputs.tags }}

.github/workflows/build-official.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ on:
66
branches:
77
- main
88
paths:
9-
- 9.2/official/**
10-
- .github/workflows/build-9.2-official.yml
9+
- 9.3/official/**
10+
- .github/workflows/build-9.3-official.yml
1111

1212
jobs:
1313
build:
@@ -19,7 +19,7 @@ jobs:
1919
-
2020
name: Set up dynamic build ARGs
2121
id: getargs
22-
run: echo "version=$(cat ./9.2/official/VERSION)" >> $GITHUB_OUTPUT
22+
run: echo "version=$(cat ./9.3/official/VERSION)" >> $GITHUB_OUTPUT
2323
-
2424
name: Set up Docker metadata for Alpine
2525
id: meta-alpine
@@ -29,7 +29,7 @@ jobs:
2929
${{ github.repository }}
3030
ghcr.io/${{ github.repository }}
3131
tags: |
32-
type=raw,9.2-alpine
32+
type=raw,9.3-alpine
3333
labels: |
3434
org.opencontainers.image.vendor=The Goofball - goofball222@gmail.com
3535
org.opencontainers.image.title=UniFi Controller
@@ -44,7 +44,7 @@ jobs:
4444
${{ github.repository }}
4545
ghcr.io/${{ github.repository }}
4646
tags: |
47-
type=raw,9.2-debian
47+
type=raw,9.3-debian
4848
labels: |
4949
org.opencontainers.image.vendor=The Goofball - goofball222@gmail.com
5050
org.opencontainers.image.title=UniFi Controller
@@ -59,8 +59,8 @@ jobs:
5959
${{ github.repository }}
6060
ghcr.io/${{ github.repository }}
6161
tags: |
62-
type=raw,9.2
63-
type=raw,9.2-ubuntu
62+
type=raw,9.3
63+
type=raw,9.3-ubuntu
6464
labels: |
6565
org.opencontainers.image.vendor=The Goofball - goofball222@gmail.com
6666
org.opencontainers.image.title=UniFi Controller
@@ -89,8 +89,8 @@ jobs:
8989
name: Build and push Alpine Docker image
9090
uses: docker/build-push-action@v6
9191
with:
92-
context: ./9.2/official
93-
file: ./9.2/official/Dockerfile.alpine
92+
context: ./9.3/official
93+
file: ./9.3/official/Dockerfile.alpine
9494
platforms: linux/amd64,linux/arm64
9595
push: ${{ github.event_name != 'pull_request' }}
9696
tags: ${{ steps.meta-alpine.outputs.tags }}
@@ -100,8 +100,8 @@ jobs:
100100
name: Build and push Debian Docker image
101101
uses: docker/build-push-action@v6
102102
with:
103-
context: ./9.2/official
104-
file: ./9.2/official/Dockerfile.debian
103+
context: ./9.3/official
104+
file: ./9.3/official/Dockerfile.debian
105105
platforms: linux/amd64
106106
push: ${{ github.event_name != 'pull_request' }}
107107
tags: ${{ steps.meta-debian.outputs.tags }}
@@ -111,8 +111,8 @@ jobs:
111111
name: Build and push Ubuntu Docker image
112112
uses: docker/build-push-action@v6
113113
with:
114-
context: ./9.2/official
115-
file: ./9.2/official/Dockerfile
114+
context: ./9.3/official
115+
file: ./9.3/official/Dockerfile
116116
platforms: linux/amd64,linux/arm64
117117
push: ${{ github.event_name != 'pull_request' }}
118118
tags: ${{ steps.meta-ubuntu.outputs.tags }}

9.4/beta/root/usr/local/bin/docker-entrypoint.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
# docker-entrypoint.sh script for UniFi Docker container
44
# License: Apache-2.0
55
# Github: https://github.com/goofball222/unifi
6-
SCRIPT_VERSION="1.1.3"
7-
# Last updated date: 2024-03-01
6+
SCRIPT_VERSION="1.2.0"
7+
# Last updated date: 2025-08-19
88

99
set -Eeuo pipefail
1010

0 commit comments

Comments
 (0)