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/readarr` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
50
+
Simply pulling `lscr.io/linuxserver/readarr` 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
@@ -87,7 +88,7 @@ Here are some example snippets to help you get started creating a container.
@@ -175,7 +176,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
175
176
* container version number
176
177
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' readarr`
177
178
* image version number
178
-
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' ghcr.io/linuxserver/readarr`
179
+
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/readarr`
179
180
180
181
## Updating Info
181
182
@@ -193,7 +194,7 @@ Below are the instructions for updating containers:
193
194
194
195
### Via Docker Run
195
196
196
-
* Update the image: `docker pull ghcr.io/linuxserver/readarr`
197
+
* Update the image: `docker pull lscr.io/linuxserver/readarr`
197
198
* Stop the running container: `docker stop readarr`
198
199
* Delete the container: `docker rm readarr`
199
200
* 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)
@@ -228,7 +229,7 @@ cd docker-readarr
228
229
docker build \
229
230
--no-cache \
230
231
--pull \
231
-
-t ghcr.io/linuxserver/readarr:latest .
232
+
-t lscr.io/linuxserver/readarr:latest .
232
233
```
233
234
234
235
The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static`
0 commit comments