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 Jan 7, 2024. It is now read-only.
@@ -46,7 +47,7 @@ The [Unifi-controller](https://www.ubnt.com/enterprise/#unifi) Controller softwa
46
47
47
48
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/).
48
49
49
-
Simply pulling `ghcr.io/linuxserver/unifi-controller` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
50
+
Simply pulling `lscr.io/linuxserver/unifi-controller` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
50
51
51
52
The architectures supported by this image are:
52
53
@@ -82,7 +83,7 @@ Here are some example snippets to help you get started creating a container.
82
83
version: "2.1"
83
84
services:
84
85
unifi-controller:
85
-
image: ghcr.io/linuxserver/unifi-controller
86
+
image: lscr.io/linuxserver/unifi-controller
86
87
container_name: unifi-controller
87
88
environment:
88
89
- PUID=1000
@@ -124,7 +125,7 @@ docker run -d \
124
125
-p 5514:5514/udp `#optional` \
125
126
-v <path to data>:/config \
126
127
--restart unless-stopped \
127
-
ghcr.io/linuxserver/unifi-controller
128
+
lscr.io/linuxserver/unifi-controller
128
129
```
129
130
130
131
### Version Tags
@@ -206,7 +207,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
206
207
* container version number
207
208
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' unifi-controller`
208
209
* image version number
209
-
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' ghcr.io/linuxserver/unifi-controller`
210
+
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/unifi-controller`
210
211
211
212
## Updating Info
212
213
@@ -224,7 +225,7 @@ Below are the instructions for updating containers:
224
225
225
226
### Via Docker Run
226
227
227
-
* Update the image: `docker pull ghcr.io/linuxserver/unifi-controller`
228
+
* Update the image: `docker pull lscr.io/linuxserver/unifi-controller`
228
229
* Stop the running container: `docker stop unifi-controller`
229
230
* Delete the container: `docker rm unifi-controller`
230
231
* 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)
@@ -259,7 +260,7 @@ cd docker-unifi-controller
259
260
docker build \
260
261
--no-cache \
261
262
--pull \
262
-
-t ghcr.io/linuxserver/unifi-controller:latest .
263
+
-t lscr.io/linuxserver/unifi-controller:latest .
263
264
```
264
265
265
266
The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static`
0 commit comments