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
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/netbox` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
50
+
Simply pulling `lscr.io/linuxserver/netbox` 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
@@ -73,7 +74,7 @@ Here are some example snippets to help you get started creating a container.
73
74
version: "2.1"
74
75
services:
75
76
netbox:
76
-
image: ghcr.io/linuxserver/netbox
77
+
image: lscr.io/linuxserver/netbox
77
78
container_name: netbox
78
79
environment:
79
80
- PUID=1000
@@ -137,7 +138,7 @@ docker run -d \
137
138
-p 8000:8000 \
138
139
-v <path to data on host>:/config \
139
140
--restart unless-stopped \
140
-
ghcr.io/linuxserver/netbox
141
+
lscr.io/linuxserver/netbox
141
142
```
142
143
143
144
## Parameters
@@ -215,7 +216,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
215
216
* container version number
216
217
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' netbox`
217
218
* image version number
218
-
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' ghcr.io/linuxserver/netbox`
219
+
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/netbox`
219
220
220
221
## Updating Info
221
222
@@ -233,7 +234,7 @@ Below are the instructions for updating containers:
233
234
234
235
### Via Docker Run
235
236
236
-
* Update the image: `docker pull ghcr.io/linuxserver/netbox`
237
+
* Update the image: `docker pull lscr.io/linuxserver/netbox`
237
238
* Stop the running container: `docker stop netbox`
238
239
* Delete the container: `docker rm netbox`
239
240
* 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)
@@ -268,7 +269,7 @@ cd docker-netbox
268
269
docker build \
269
270
--no-cache \
270
271
--pull \
271
-
-t ghcr.io/linuxserver/netbox:latest .
272
+
-t lscr.io/linuxserver/netbox:latest .
272
273
```
273
274
274
275
The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static`
0 commit comments