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
{{ message }}
This repository was archived by the owner on Sep 5, 2022. It is now read-only.
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/requestrr` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
50
+
Simply pulling `lscr.io/linuxserver/requestrr` 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
requestrr:
74
-
image: ghcr.io/linuxserver/requestrr
75
+
image: lscr.io/linuxserver/requestrr
75
76
container_name: requestrr
76
77
environment:
77
78
- PUID=1000
@@ -95,7 +96,7 @@ docker run -d \
95
96
-p 4545:4545 \
96
97
-v /path/to/appdata/config:/config \
97
98
--restart unless-stopped \
98
-
ghcr.io/linuxserver/requestrr
99
+
lscr.io/linuxserver/requestrr
99
100
```
100
101
101
102
## Parameters
@@ -153,7 +154,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
153
154
* container version number
154
155
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' requestrr`
155
156
* image version number
156
-
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' ghcr.io/linuxserver/requestrr`
157
+
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/requestrr`
157
158
158
159
## Updating Info
159
160
@@ -171,7 +172,7 @@ Below are the instructions for updating containers:
171
172
172
173
### Via Docker Run
173
174
174
-
* Update the image: `docker pull ghcr.io/linuxserver/requestrr`
175
+
* Update the image: `docker pull lscr.io/linuxserver/requestrr`
175
176
* Stop the running container: `docker stop requestrr`
176
177
* Delete the container: `docker rm requestrr`
177
178
* 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)
@@ -206,7 +207,7 @@ cd docker-requestrr
206
207
docker build \
207
208
--no-cache \
208
209
--pull \
209
-
-t ghcr.io/linuxserver/requestrr:latest .
210
+
-t lscr.io/linuxserver/requestrr:latest .
210
211
```
211
212
212
213
The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static`
0 commit comments