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
Copy file name to clipboardExpand all lines: README.md
+11-11Lines changed: 11 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -46,17 +46,17 @@ Find us at:
46
46
47
47
## Supported Architectures
48
48
49
-
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/).
49
+
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/).
50
50
51
-
Simply pulling `lscr.io/linuxserver/netbox` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
51
+
Simply pulling `lscr.io/linuxserver/netbox:latest` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
52
52
53
53
The architectures supported by this image are:
54
54
55
-
| Architecture | Tag |
56
-
| :----: | --- |
57
-
| x86-64 | amd64-latest|
58
-
| arm64 | arm64v8-latest|
59
-
| armhf| arm32v7-latest|
55
+
| Architecture |Available |Tag |
56
+
| :----: |:----: | ---- |
57
+
| x86-64 |✅ |amd64-\<version tag\>|
58
+
| arm64 |✅ |arm64v8-\<version tag\>|
59
+
| armhf| ✅ | arm32v7-\<version tag\>|
60
60
61
61
## Application Setup
62
62
@@ -75,7 +75,7 @@ Here are some example snippets to help you get started creating a container.
75
75
version: "2.1"
76
76
services:
77
77
netbox:
78
-
image: lscr.io/linuxserver/netbox
78
+
image: lscr.io/linuxserver/netbox:latest
79
79
container_name: netbox
80
80
environment:
81
81
- PUID=1000
@@ -139,7 +139,7 @@ docker run -d \
139
139
-p 8000:8000 \
140
140
-v <path to data on host>:/config \
141
141
--restart unless-stopped \
142
-
lscr.io/linuxserver/netbox
142
+
lscr.io/linuxserver/netbox:latest
143
143
```
144
144
145
145
## Parameters
@@ -217,7 +217,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
217
217
* container version number
218
218
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' netbox`
219
219
* image version number
220
-
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/netbox`
220
+
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/netbox:latest`
221
221
222
222
## Updating Info
223
223
@@ -235,7 +235,7 @@ Below are the instructions for updating containers:
235
235
236
236
### Via Docker Run
237
237
238
-
* Update the image: `docker pull lscr.io/linuxserver/netbox`
238
+
* Update the image: `docker pull lscr.io/linuxserver/netbox:latest`
239
239
* Stop the running container: `docker stop netbox`
240
240
* Delete the container: `docker rm netbox`
241
241
* 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