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/dokuwiki` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
50
+
Simply pulling `lscr.io/linuxserver/dokuwiki` 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
@@ -71,7 +72,7 @@ Here are some example snippets to help you get started creating a container.
71
72
version: "2.1"
72
73
services:
73
74
dokuwiki:
74
-
image: ghcr.io/linuxserver/dokuwiki
75
+
image: lscr.io/linuxserver/dokuwiki
75
76
container_name: dokuwiki
76
77
environment:
77
78
- PUID=1000
@@ -97,7 +98,7 @@ docker run -d \
97
98
-p 443:443 `#optional` \
98
99
-v /path/to/appdata/config:/config \
99
100
--restart unless-stopped \
100
-
ghcr.io/linuxserver/dokuwiki
101
+
lscr.io/linuxserver/dokuwiki
101
102
```
102
103
103
104
## Parameters
@@ -156,7 +157,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
156
157
* container version number
157
158
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' dokuwiki`
158
159
* image version number
159
-
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' ghcr.io/linuxserver/dokuwiki`
160
+
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/dokuwiki`
160
161
161
162
## Updating Info
162
163
@@ -174,7 +175,7 @@ Below are the instructions for updating containers:
174
175
175
176
### Via Docker Run
176
177
177
-
* Update the image: `docker pull ghcr.io/linuxserver/dokuwiki`
178
+
* Update the image: `docker pull lscr.io/linuxserver/dokuwiki`
178
179
* Stop the running container: `docker stop dokuwiki`
179
180
* Delete the container: `docker rm dokuwiki`
180
181
* 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)
@@ -209,7 +210,7 @@ cd docker-dokuwiki
209
210
docker build \
210
211
--no-cache \
211
212
--pull \
212
-
-t ghcr.io/linuxserver/dokuwiki:latest .
213
+
-t lscr.io/linuxserver/dokuwiki:latest .
213
214
```
214
215
215
216
The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static`
0 commit comments