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 Aug 25, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+11-11
Original file line number
Diff line number
Diff line change
@@ -49,17 +49,17 @@ Whilst we know of no nntp2nntp security issues the [upstream code](https://githu
49
49
50
50
## Supported Architectures
51
51
52
-
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/).
52
+
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/).
53
53
54
-
Simply pulling `lscr.io/linuxserver/nntp2nntp` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
54
+
Simply pulling `lscr.io/linuxserver/nntp2nntp:latest` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
55
55
56
56
The architectures supported by this image are:
57
57
58
-
| Architecture | Tag |
59
-
| :----: | --- |
60
-
| x86-64 | amd64-latest|
61
-
| arm64 | arm64v8-latest|
62
-
| armhf| arm32v6-latest|
58
+
| Architecture |Available |Tag |
59
+
| :----: |:----: | ---- |
60
+
| x86-64 |✅ |amd64-\<version tag\>|
61
+
| arm64 |✅ |arm64v8-\<version tag\>|
62
+
| armhf| ✅ | arm32v7-\<version tag\>|
63
63
64
64
## Application Setup
65
65
@@ -87,7 +87,7 @@ Here are some example snippets to help you get started creating a container.
87
87
version: "2.1"
88
88
services:
89
89
nntp2nntp:
90
-
image: lscr.io/linuxserver/nntp2nntp
90
+
image: lscr.io/linuxserver/nntp2nntp:latest
91
91
container_name: nntp2nntp
92
92
environment:
93
93
- PUID=1000
@@ -115,7 +115,7 @@ docker run -d \
115
115
-p 1563:1563 \
116
116
-v <path to data>:/config \
117
117
--restart unless-stopped \
118
-
lscr.io/linuxserver/nntp2nntp
118
+
lscr.io/linuxserver/nntp2nntp:latest
119
119
```
120
120
121
121
## Parameters
@@ -175,7 +175,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
175
175
* container version number
176
176
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' nntp2nntp`
177
177
* image version number
178
-
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/nntp2nntp`
178
+
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/nntp2nntp:latest`
179
179
180
180
## Updating Info
181
181
@@ -193,7 +193,7 @@ Below are the instructions for updating containers:
193
193
194
194
### Via Docker Run
195
195
196
-
* Update the image: `docker pull lscr.io/linuxserver/nntp2nntp`
196
+
* Update the image: `docker pull lscr.io/linuxserver/nntp2nntp:latest`
197
197
* Stop the running container: `docker stop nntp2nntp`
198
198
* Delete the container: `docker rm nntp2nntp`
199
199
* 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