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
+10-10Lines changed: 10 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -50,17 +50,17 @@ For more information on BookStack visit their website and check it out: https://
50
50
51
51
## Supported Architectures
52
52
53
-
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/).
53
+
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/).
54
54
55
-
Simply pulling `lscr.io/linuxserver/bookstack` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
55
+
Simply pulling `lscr.io/linuxserver/bookstack:latest` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
56
56
57
57
The architectures supported by this image are:
58
58
59
-
| Architecture | Tag |
60
-
| :----: | --- |
61
-
| x86-64 | amd64-latest|
62
-
| arm64 | arm64v8-latest|
63
-
| armhf| arm32v7-latest|
59
+
| Architecture |Available |Tag |
60
+
| :----: |:----: | ---- |
61
+
| x86-64 |✅ |amd64-\<version tag\>|
62
+
| arm64 |✅ |arm64v8-\<version tag\>|
63
+
| armhf| ✅ | arm32v7-\<version tag\>|
64
64
65
65
## Application Setup
66
66
@@ -143,7 +143,7 @@ docker run -d \
143
143
-p 6875:80 \
144
144
-v /path/to/data:/config \
145
145
--restart unless-stopped \
146
-
lscr.io/linuxserver/bookstack
146
+
lscr.io/linuxserver/bookstack:latest
147
147
```
148
148
149
149
## Parameters
@@ -205,7 +205,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
205
205
* container version number
206
206
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' bookstack`
207
207
* image version number
208
-
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/bookstack`
208
+
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/bookstack:latest`
209
209
210
210
## Updating Info
211
211
@@ -223,7 +223,7 @@ Below are the instructions for updating containers:
223
223
224
224
### Via Docker Run
225
225
226
-
* Update the image: `docker pull lscr.io/linuxserver/bookstack`
226
+
* Update the image: `docker pull lscr.io/linuxserver/bookstack:latest`
227
227
* Stop the running container: `docker stop bookstack`
228
228
* Delete the container: `docker rm bookstack`
229
229
* 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