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.
Copy file name to clipboardExpand all lines: README.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,17 +51,17 @@ The upstream dev has ended development.
51
51
52
52
## Supported Architectures
53
53
54
-
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/).
54
+
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/).
55
55
56
-
Simply pulling `lscr.io/linuxserver/requestrr` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
56
+
Simply pulling `lscr.io/linuxserver/requestrr:latest` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
57
57
58
58
The architectures supported by this image are:
59
59
60
-
| Architecture | Tag |
61
-
| :----: | --- |
62
-
| x86-64 | amd64-latest|
63
-
| arm64 | arm64v8-latest|
64
-
| armhf| arm32v7-latest|
60
+
| Architecture |Available |Tag |
61
+
| :----: |:----: | ---- |
62
+
| x86-64 |✅ |amd64-\<version tag\>|
63
+
| arm64 |✅ |arm64v8-\<version tag\>|
64
+
| armhf| ✅ | arm32v7-\<version tag\>|
65
65
66
66
## Application Setup
67
67
@@ -78,7 +78,7 @@ Here are some example snippets to help you get started creating a container.
78
78
version: "2.1"
79
79
services:
80
80
requestrr:
81
-
image: lscr.io/linuxserver/requestrr
81
+
image: lscr.io/linuxserver/requestrr:latest
82
82
container_name: requestrr
83
83
environment:
84
84
- PUID=1000
@@ -102,7 +102,7 @@ docker run -d \
102
102
-p 4545:4545 \
103
103
-v /path/to/appdata/config:/config \
104
104
--restart unless-stopped \
105
-
lscr.io/linuxserver/requestrr
105
+
lscr.io/linuxserver/requestrr:latest
106
106
```
107
107
108
108
## Parameters
@@ -160,7 +160,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
160
160
* container version number
161
161
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' requestrr`
162
162
* image version number
163
-
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/requestrr`
163
+
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/requestrr:latest`
164
164
165
165
## Updating Info
166
166
@@ -178,7 +178,7 @@ Below are the instructions for updating containers:
178
178
179
179
### Via Docker Run
180
180
181
-
* Update the image: `docker pull lscr.io/linuxserver/requestrr`
181
+
* Update the image: `docker pull lscr.io/linuxserver/requestrr:latest`
182
182
* Stop the running container: `docker stop requestrr`
183
183
* Delete the container: `docker rm requestrr`
184
184
* 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