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: .github/CONTRIBUTING.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
5
5
* While contributing make sure to make all your changes before creating a Pull Request, as our pipeline builds each commit after the PR is open.
6
6
* Read, and fill the Pull Request template
7
-
* If this is a fix for a typo in code or documentation in the README please file an issue
7
+
* If this is a fix for a typo (in code, documentation, or the README) please file an issue and let us sort it out. We do not need a PR
8
8
* If the PR is addressing an existing issue include, closes #\<issue number>, in the body of the PR commit message
9
9
* If you want to discuss changes, you can also bring it up in [#dev-talk](https://discordapp.com/channels/354974912613449730/757585807061155840) in our [Discord server](https://discord.gg/YWrKVTn)
Copy file name to clipboardExpand all lines: .github/PULL_REQUEST_TEMPLATE.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@
6
6
7
7
<!--- Before submitting a pull request please check the following -->
8
8
9
-
<!--- If this is a fix for a typo in code or documentation in the README please file an issue and let us sort it out we do not need a PR -->
9
+
<!--- If this is a fix for a typo (in code, documentation, or the README) please file an issue and let us sort it out. We do not need a PR -->
10
10
<!--- Ask yourself if this modification is something the whole userbase will benefit from, if this is a specific change for corner case functionality or plugins please look at making a Docker Mod or local script https://blog.linuxserver.io/2019/09/14/customizing-our-containers/ -->
11
11
<!--- That if the PR is addressing an existing issue include, closes #<issue number> , in the body of the PR commit message -->
12
12
<!--- You have included links to any files / patches etc your PR may be using in the body of the PR commit message -->
Copy file name to clipboardExpand all lines: .github/workflows/stale.yml
+1-1
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ jobs:
10
10
runs-on: ubuntu-latest
11
11
12
12
steps:
13
-
- uses: actions/stale@v1
13
+
- uses: actions/stale@v3
14
14
with:
15
15
stale-issue-message: "This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions."
16
16
stale-pr-message: "This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions."
[](https://microbadger.com/images/linuxserver/nntp2nntp"Get your own version badge on microbadger.com")
@@ -50,7 +50,7 @@ Whilst we know of no nntp2nntp security issues the [upstream code](https://githu
50
50
51
51
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
52
53
-
Simply pulling `ghcr.io/linuxserver/nntp2nntp` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
53
+
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
54
55
55
The architectures supported by this image are:
56
56
@@ -79,16 +79,14 @@ Dave = 5e884898da28047151d0e56f8dc6292773603d0d6aabbdd62a11ef721d1542d8
79
79
80
80
Here are some example snippets to help you get started creating a container.
### docker-compose (recommended, [click here for more info](https://docs.linuxserver.io/general/docker-compose))
85
83
86
84
```yaml
87
85
---
88
86
version: "2.1"
89
87
services:
90
88
nntp2nntp:
91
-
image: ghcr.io/linuxserver/nntp2nntp
89
+
image: lscr.io/linuxserver/nntp2nntp
92
90
container_name: nntp2nntp
93
91
environment:
94
92
- PUID=1000
@@ -103,7 +101,7 @@ services:
103
101
restart: unless-stopped
104
102
```
105
103
106
-
### docker cli
104
+
### docker cli ([click here for more info](https://docs.docker.com/engine/reference/commandline/cli/))
107
105
108
106
```bash
109
107
docker run -d \
@@ -116,7 +114,7 @@ docker run -d \
116
114
-p 1563:1563 \
117
115
-v <path to data>:/config \
118
116
--restart unless-stopped \
119
-
ghcr.io/linuxserver/nntp2nntp
117
+
lscr.io/linuxserver/nntp2nntp
120
118
```
121
119
122
120
## Parameters
@@ -176,7 +174,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
176
174
* container version number
177
175
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' nntp2nntp`
178
176
* image version number
179
-
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' ghcr.io/linuxserver/nntp2nntp`
177
+
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/nntp2nntp`
180
178
181
179
## Updating Info
182
180
@@ -194,7 +192,7 @@ Below are the instructions for updating containers:
194
192
195
193
### Via Docker Run
196
194
197
-
* Update the image: `docker pull ghcr.io/linuxserver/nntp2nntp`
195
+
* Update the image: `docker pull lscr.io/linuxserver/nntp2nntp`
198
196
* Stop the running container: `docker stop nntp2nntp`
199
197
* Delete the container: `docker rm nntp2nntp`
200
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)
@@ -229,7 +227,7 @@ cd docker-nntp2nntp
229
227
docker build \
230
228
--no-cache \
231
229
--pull \
232
-
-t ghcr.io/linuxserver/nntp2nntp:latest .
230
+
-t lscr.io/linuxserver/nntp2nntp:latest .
233
231
```
234
232
235
233
The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static`
0 commit comments