Skip to content
This repository was archived by the owner on Sep 5, 2022. It is now read-only.

Commit f2199ce

Browse files
Bot Updating Templated Files
1 parent b43308c commit f2199ce

File tree

5 files changed

+11
-234
lines changed

5 files changed

+11
-234
lines changed

.github/workflows/external_trigger.yml

Lines changed: 0 additions & 92 deletions
This file was deleted.

.github/workflows/external_trigger_scheduler.yml

Lines changed: 0 additions & 43 deletions
This file was deleted.

.github/workflows/package_trigger.yml

Lines changed: 0 additions & 38 deletions
This file was deleted.

.github/workflows/package_trigger_scheduler.yml

Lines changed: 0 additions & 50 deletions
This file was deleted.

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -51,17 +51,17 @@ The upstream dev has ended development.
5151

5252
## Supported Architectures
5353

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/).
5555

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.
5757

5858
The architectures supported by this image are:
5959

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\> |
6565

6666
## Application Setup
6767

@@ -78,7 +78,7 @@ Here are some example snippets to help you get started creating a container.
7878
version: "2.1"
7979
services:
8080
requestrr:
81-
image: lscr.io/linuxserver/requestrr
81+
image: lscr.io/linuxserver/requestrr:latest
8282
container_name: requestrr
8383
environment:
8484
- PUID=1000
@@ -102,7 +102,7 @@ docker run -d \
102102
-p 4545:4545 \
103103
-v /path/to/appdata/config:/config \
104104
--restart unless-stopped \
105-
lscr.io/linuxserver/requestrr
105+
lscr.io/linuxserver/requestrr:latest
106106
```
107107

108108
## Parameters
@@ -160,7 +160,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
160160
* container version number
161161
* `docker inspect -f '{{ index .Config.Labels "build_version" }}' requestrr`
162162
* 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`
164164

165165
## Updating Info
166166

@@ -178,7 +178,7 @@ Below are the instructions for updating containers:
178178

179179
### Via Docker Run
180180

181-
* Update the image: `docker pull lscr.io/linuxserver/requestrr`
181+
* Update the image: `docker pull lscr.io/linuxserver/requestrr:latest`
182182
* Stop the running container: `docker stop requestrr`
183183
* Delete the container: `docker rm requestrr`
184184
* 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

Comments
 (0)