You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 24, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+15-7
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ Find us at:
44
44
45
45
Our images support multiple architectures such as `x86-64`, `arm64` and `armhf`. We utilise the docker manifest for multi-platform awareness. More information is available from docker [here](https://github.com/docker/distribution/blob/master/docs/spec/manifest-v2-2.md#manifest-list) and our announcement [here](https://blog.linuxserver.io/2019/02/21/the-lsio-pipeline-project/).
46
46
47
-
Simply pulling `ghcr.io/linuxserver-labs/omada-controller` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
47
+
Simply pulling `lscr.io/linuxserver-labs/omada-controller` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
48
48
49
49
The architectures supported by this image are:
50
50
@@ -57,6 +57,10 @@ The architectures supported by this image are:
57
57
58
58
Access the webui at `<your-ip>:8088`, for more information check out [omada-controller](https://www.tp-link.com/uk/support/download/omada-software-controller/).
59
59
60
+
### Upgrades from v4 -> v5
61
+
62
+
**Due to breaking changes it is necessary to take a backup of your v4 install, spin up a clean v5 container and then restore the backup.**
63
+
60
64
## Usage
61
65
62
66
Here are some example snippets to help you get started creating a container.
@@ -68,7 +72,7 @@ Here are some example snippets to help you get started creating a container.
68
72
version: "2.1"
69
73
services:
70
74
omada-controller:
71
-
image: ghcr.io/linuxserver-labs/omada-controller
75
+
image: lscr.io/linuxserver-labs/omada-controller
72
76
container_name: omada-controller
73
77
environment:
74
78
- PUID=1000
@@ -83,6 +87,7 @@ services:
83
87
- 29811:29811
84
88
- 29812:29812
85
89
- 29813:29813
90
+
- 29814:29814
86
91
restart: unless-stopped
87
92
```
88
93
@@ -100,9 +105,10 @@ docker run -d \
100
105
-p 29811:29811 \
101
106
-p 29812:29812 \
102
107
-p 29813:29813 \
108
+
-p 29814:29814 \
103
109
-v /path/to/data:/config \
104
110
--restart unless-stopped \
105
-
ghcr.io/linuxserver-labs/omada-controller
111
+
lscr.io/linuxserver-labs/omada-controller
106
112
```
107
113
108
114
## Parameters
@@ -117,6 +123,7 @@ Container images are configured using parameters passed at runtime (such as thos
117
123
|`-p 29811`| EAP Management |
118
124
|`-p 29812`| EAP adoption |
119
125
|`-p 29813`| EAP upgrade |
126
+
|`-p 29814`| v5 EAP Discovery & Adoption |
120
127
|`-e PUID=1000`| for UserID - see below for explanation |
121
128
|`-e PGID=1000`| for GroupID - see below for explanation |
122
129
|`-e TZ=Europe/London`| Specify a timezone to use EG Europe/London, this is required for omada-controller |
@@ -165,7 +172,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
165
172
* container version number
166
173
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' omada-controller`
167
174
* image version number
168
-
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' ghcr.io/linuxserver-labs/omada-controller`
175
+
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver-labs/omada-controller`
169
176
170
177
## Updating Info
171
178
@@ -183,7 +190,7 @@ Below are the instructions for updating containers:
183
190
184
191
### Via Docker Run
185
192
186
-
* Update the image: `docker pull ghcr.io/linuxserver-labs/omada-controller`
193
+
* Update the image: `docker pull lscr.io/linuxserver-labs/omada-controller`
187
194
* Stop the running container: `docker stop omada-controller`
188
195
* Delete the container: `docker rm omada-controller`
189
196
* Recreate a new container with the same docker run parameters as instructed above (if mapped correctly to a host folder, your `/config` folder and settings will be preserved)
0 commit comments