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 66
77jobs :
88 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
1010 with :
1111 repo_owner : ${{ github.repository_owner }}
1212 app_name : " omada-controller"
13+ release_type : " script"
1314 secrets :
14- scarf_token : ${{ secrets.SCARF_TOKEN }}
15+ scarf_token : ${{ secrets.SCARF_TOKEN }}
Original file line number Diff line number Diff line change 77
88jobs :
99 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
1111 with :
1212 repo_owner : ${{ github.repository_owner }}
1313 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
4848
4949The architectures supported by this image are:
5050
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 | ❌ | |
5556
5657## Application Setup
5758
@@ -72,7 +73,7 @@ Here are some example snippets to help you get started creating a container.
7273version : " 2.1"
7374services :
7475 omada-controller :
75- image : lscr.io/linuxserver-labs/omada-controller
76+ image : lscr.io/linuxserver-labs/omada-controller:latest
7677 container_name : omada-controller
7778 environment :
7879 - PUID=1000
@@ -108,7 +109,7 @@ docker run -d \
108109 -p 29814:29814 \
109110 -v /path/to/data:/config \
110111 --restart unless-stopped \
111- lscr.io/linuxserver-labs/omada-controller
112+ lscr.io/linuxserver-labs/omada-controller:latest
112113```
113114
114115## Parameters
You can’t perform that action at this time.
0 commit comments