This repository was archived by the owner on Jul 24, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +28
-9
lines changed Expand file tree Collapse file tree 4 files changed +28
-9
lines changed Original file line number Diff line number Diff line change
1
+ name : Check for base image updates
2
+
3
+ on :
4
+ workflow_dispatch :
5
+ schedule :
6
+ - cron : ' 0 0 * * 0'
7
+
8
+ jobs :
9
+ call-workflow :
10
+ uses : linuxserver-labs/docker-actions/.github/workflows/check-baseimage-update.yml@v5
11
+ with :
12
+ repo_owner : ${{ github.repository_owner }}
13
+ app_name : " omada-controller"
14
+ baseimage : " ubuntu"
15
+ basebranch : " focal"
16
+ secrets :
17
+ repo_release_token : ${{ secrets.repo_release_token }}
Original file line number Diff line number Diff line change 6
6
7
7
jobs :
8
8
call-workflow :
9
- uses : linuxserver-labs/docker-actions/.github/workflows/build-image.yml@v4
9
+ uses : linuxserver-labs/docker-actions/.github/workflows/build-image.yml@v5
10
10
with :
11
11
repo_owner : ${{ github.repository_owner }}
12
12
app_name : " omada-controller"
13
+ release_type : " script"
13
14
secrets :
14
- scarf_token : ${{ secrets.SCARF_TOKEN }}
15
+ scarf_token : ${{ secrets.SCARF_TOKEN }}
Original file line number Diff line number Diff line change 7
7
8
8
jobs :
9
9
call-workflow :
10
- uses : linuxserver-labs/docker-actions/.github/workflows/check-and-release.yml@v4
10
+ uses : linuxserver-labs/docker-actions/.github/workflows/check-and-release.yml@v5
11
11
with :
12
12
repo_owner : ${{ github.repository_owner }}
13
13
app_name : " omada-controller"
Original file line number Diff line number Diff line change @@ -48,10 +48,11 @@ Simply pulling `lscr.io/linuxserver-labs/omada-controller` should retrieve the c
48
48
49
49
The architectures supported by this image are:
50
50
51
- | Architecture | Tag |
52
- | :----: | --- |
53
- | x86-64 | latest |
54
- | arm64 | latest |
51
+ | Architecture | Available | Tag |
52
+ | :----: | :----: | ---- |
53
+ | x86-64 | ✅ | latest |
54
+ | arm64 | ✅ | latest |
55
+ | armhf | ❌ | |
55
56
56
57
## Application Setup
57
58
@@ -72,7 +73,7 @@ Here are some example snippets to help you get started creating a container.
72
73
version : " 2.1"
73
74
services :
74
75
omada-controller :
75
- image : lscr.io/linuxserver-labs/omada-controller
76
+ image : lscr.io/linuxserver-labs/omada-controller:latest
76
77
container_name : omada-controller
77
78
environment :
78
79
- PUID=1000
@@ -108,7 +109,7 @@ docker run -d \
108
109
-p 29814:29814 \
109
110
-v /path/to/data:/config \
110
111
--restart unless-stopped \
111
- lscr.io/linuxserver-labs/omada-controller
112
+ lscr.io/linuxserver-labs/omada-controller:latest
112
113
```
113
114
114
115
## Parameters
You can’t perform that action at this time.
0 commit comments