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
Copy file name to clipboardExpand all lines: README.md
+16-16Lines changed: 16 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,26 +46,26 @@ Find us at:
46
46
47
47
## Supported Architectures
48
48
49
-
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/).
49
+
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/).
50
50
51
-
Simply pulling `lscr.io/linuxserver/pyload-ng` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
51
+
Simply pulling `lscr.io/linuxserver/pyload-ng:latest` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
52
52
53
53
The architectures supported by this image are:
54
54
55
-
| Architecture | Tag |
56
-
| :----: | --- |
57
-
| x86-64 | amd64-latest|
58
-
| arm64 | arm64v8-latest|
59
-
| armhf| arm32v7-latest|
55
+
| Architecture |Available |Tag |
56
+
| :----: |:----: | ---- |
57
+
| x86-64 |✅ |amd64-\<version tag\>|
58
+
| arm64 |✅ |arm64v8-\<version tag\>|
59
+
| armhf| ✅ | arm32v7-\<version tag\>|
60
60
61
61
## Version Tags
62
62
63
-
This image provides various versions that are available via tags. `latest` tag usually provides the latest stable version. Others are considered under development and caution must be exercised when using them.
63
+
This image provides various versions that are available via tags. Please read the descriptions carefully and exercise caution when using unstable or development tags.
64
64
65
-
| Tag | Description |
66
-
| :----: | --- |
67
-
| latest | Stable releases from pyLoad Next |
68
-
| develop | Releases from pyload Next develop branch |
65
+
| Tag |Available |Description |
66
+
| :----: |:----: |--- |
67
+
| latest |✅ |Stable releases from pyLoad Next |
68
+
| develop |✅ |Releases from pyload Next develop branch |
69
69
70
70
## Application Setup
71
71
@@ -86,7 +86,7 @@ Here are some example snippets to help you get started creating a container.
86
86
version: "2.1"
87
87
services:
88
88
pyload-ng:
89
-
image: lscr.io/linuxserver/pyload-ng
89
+
image: lscr.io/linuxserver/pyload-ng:latest
90
90
container_name: pyload-ng
91
91
environment:
92
92
- PUID=1000
@@ -114,7 +114,7 @@ docker run -d \
114
114
-v /path/to/appdata/config:/config \
115
115
-v /path/to/downloads:/downloads \
116
116
--restart unless-stopped \
117
-
lscr.io/linuxserver/pyload-ng
117
+
lscr.io/linuxserver/pyload-ng:latest
118
118
```
119
119
120
120
## Parameters
@@ -174,7 +174,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
174
174
* container version number
175
175
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' pyload-ng`
176
176
* image version number
177
-
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/pyload-ng`
177
+
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/pyload-ng:latest`
178
178
179
179
## Updating Info
180
180
@@ -192,7 +192,7 @@ Below are the instructions for updating containers:
192
192
193
193
### Via Docker Run
194
194
195
-
* Update the image: `docker pull lscr.io/linuxserver/pyload-ng`
195
+
* Update the image: `docker pull lscr.io/linuxserver/pyload-ng:latest`
196
196
* Stop the running container: `docker stop pyload-ng`
197
197
* Delete the container: `docker rm pyload-ng`
198
198
* 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