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 Jan 3, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: .github/CONTRIBUTING.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
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-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
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-1Lines changed: 1 addition & 1 deletion
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/quassel-web"Get your own version badge on microbadger.com")
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
49
50
-
Simply pulling `ghcr.io/linuxserver/quassel-web` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
50
+
Simply pulling `lscr.io/linuxserver/quassel-web` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
51
51
52
52
The architectures supported by this image are:
53
53
@@ -69,16 +69,14 @@ The configuration file using this method can be found at:
69
69
70
70
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))
75
73
76
74
```yaml
77
75
---
78
76
version: "2.1"
79
77
services:
80
78
quassel-web:
81
-
image: ghcr.io/linuxserver/quassel-web
79
+
image: lscr.io/linuxserver/quassel-web
82
80
container_name: quassel-web
83
81
environment:
84
82
- PUID=1000
@@ -93,7 +91,7 @@ services:
93
91
restart: unless-stopped
94
92
```
95
93
96
-
### docker cli
94
+
### docker cli ([click here for more info](https://docs.docker.com/engine/reference/commandline/cli/))
97
95
98
96
```bash
99
97
docker run -d \
@@ -106,7 +104,7 @@ docker run -d \
106
104
-p 64080:64080 \
107
105
-v <path to data>:/config \
108
106
--restart unless-stopped \
109
-
ghcr.io/linuxserver/quassel-web
107
+
lscr.io/linuxserver/quassel-web
110
108
```
111
109
112
110
## Parameters
@@ -166,7 +164,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
166
164
* container version number
167
165
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' quassel-web`
168
166
* image version number
169
-
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' ghcr.io/linuxserver/quassel-web`
167
+
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/quassel-web`
170
168
171
169
## Updating Info
172
170
@@ -184,7 +182,7 @@ Below are the instructions for updating containers:
184
182
185
183
### Via Docker Run
186
184
187
-
* Update the image: `docker pull ghcr.io/linuxserver/quassel-web`
185
+
* Update the image: `docker pull lscr.io/linuxserver/quassel-web`
188
186
* Stop the running container: `docker stop quassel-web`
189
187
* Delete the container: `docker rm quassel-web`
190
188
* 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)
@@ -219,7 +217,7 @@ cd docker-quassel-web
219
217
docker build \
220
218
--no-cache \
221
219
--pull \
222
-
-t ghcr.io/linuxserver/quassel-web:latest .
220
+
-t lscr.io/linuxserver/quassel-web:latest .
223
221
```
224
222
225
223
The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static`
0 commit comments