Skip to content
This repository was archived by the owner on Jan 3, 2025. It is now read-only.

Commit ea01221

Browse files
Bot Updating Templated Files
1 parent 82bf41d commit ea01221

File tree

2 files changed

+34
-30
lines changed

2 files changed

+34
-30
lines changed

.github/CONTRIBUTING.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ If you are proposing additional packages to be added, ensure that you added the
9696

9797
### Testing your changes
9898

99-
```
99+
```bash
100100
git clone https://github.com/linuxserver/docker-quassel-web.git
101101
cd docker-quassel-web
102102
docker build \
@@ -106,13 +106,14 @@ docker build \
106106
```
107107

108108
The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static`
109-
```
109+
110+
```bash
110111
docker run --rm --privileged multiarch/qemu-user-static:register --reset
111112
```
112113

113114
Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64`.
114115

115-
## Update the chagelog
116+
## Update the changelog
116117

117118
If you are modifying the Dockerfiles or any of the startup scripts in [root](https://github.com/linuxserver/docker-quassel-web/tree/master/root), add an entry to the changelog
118119

README.md

Lines changed: 30 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!-- DO NOT EDIT THIS FILE MANUALLY -->
2-
<!-- Please read the CONTRIBUTING.md -->
2+
<!-- Please read the https://github.com/linuxserver/docker-quassel-web/blob/master/.github/CONTRIBUTING.md -->
33

44
[![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png)](https://linuxserver.io)
55

@@ -12,13 +12,14 @@
1212

1313
The [LinuxServer.io](https://linuxserver.io) team brings you another container release featuring:
1414

15-
* regular and timely application updates
16-
* easy user mappings (PGID, PUID)
17-
* custom base image with s6 overlay
18-
* weekly base OS updates with common layers across the entire LinuxServer.io ecosystem to minimise space usage, down time and bandwidth
19-
* regular security updates
15+
* regular and timely application updates
16+
* easy user mappings (PGID, PUID)
17+
* custom base image with s6 overlay
18+
* weekly base OS updates with common layers across the entire LinuxServer.io ecosystem to minimise space usage, down time and bandwidth
19+
* regular security updates
2020

2121
Find us at:
22+
2223
* [Blog](https://blog.linuxserver.io) - all the things you can do with our containers including How-To guides, opinions and much more!
2324
* [Discord](https://discord.gg/YWrKVTn) - realtime support / chat with the community and the team.
2425
* [Discourse](https://discourse.linuxserver.io) - post on our community forum.
@@ -38,8 +39,7 @@ Find us at:
3839
[![Jenkins Build](https://img.shields.io/jenkins/build?labelColor=555555&logoColor=ffffff&style=for-the-badge&jobUrl=https%3A%2F%2Fci.linuxserver.io%2Fjob%2FDocker-Pipeline-Builders%2Fjob%2Fdocker-quassel-web%2Fjob%2Fmaster%2F&logo=jenkins)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-quassel-web/job/master/)
3940
[![LSIO CI](https://img.shields.io/badge/dynamic/yaml?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=CI&query=CI&url=https%3A%2F%2Fci-tests.linuxserver.io%2Flinuxserver%2Fquassel-web%2Flatest%2Fci-status.yml)](https://ci-tests.linuxserver.io/linuxserver/quassel-web/latest/index.html)
4041

41-
[Quassel-web](https://github.com/magne4000/quassel-webserver) is a web client for Quassel. Note that a Quassel-Core instance is required, we have a container available [here.](https://hub.docker.com/r/linuxserver/quassel-core/)
42-
42+
[Quassel-web](https://github.com/magne4000/quassel-webserver) is a web client for Quassel. Note that a Quassel-Core instance is required, we have a container available [here.](https://hub.docker.com/r/linuxserver/quassel-core/)
4343

4444
[![quassel-web](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/quassel-web-banner.png)](https://github.com/magne4000/quassel-webserver)
4545

@@ -57,6 +57,13 @@ The architectures supported by this image are:
5757
| arm64 | arm64v8-latest |
5858
| armhf | arm32v6-latest |
5959

60+
## Application Setup
61+
62+
By default this container webui will be available on `http://$SERVER_IP:64080`. To setup this container you can either use the envrionment variables we recommend or manually setup the configuration file by leaving out the `QUASSEL_CORE` environment variable among others.
63+
The configuration file using this method can be found at:
64+
```
65+
/config/settings-user.js
66+
```
6067

6168
## Usage
6269

@@ -88,7 +95,7 @@ services:
8895
8996
### docker cli
9097
91-
```
98+
```bash
9299
docker run -d \
93100
--name=quassel-web \
94101
-e PUID=1000 \
@@ -102,7 +109,6 @@ docker run -d \
102109
ghcr.io/linuxserver/quassel-web
103110
```
104111

105-
106112
## Parameters
107113

108114
Container images are configured using parameters passed at runtime (such as those above). These parameters are separated by a colon and indicate `<external>:<internal>` respectively. For example, `-p 8080:80` would expose port `80` from inside the container to be accessible from the host's IP on port `8080` outside the container.
@@ -123,7 +129,7 @@ You can set any environment variable from a file by using a special prepend `FIL
123129

124130
As an example:
125131

126-
```
132+
```bash
127133
-e FILE__PASSWORD=/run/secrets/mysecretpassword
128134
```
129135

@@ -142,28 +148,17 @@ Ensure any volume directories on the host are owned by the same user you specify
142148

143149
In this instance `PUID=1000` and `PGID=1000`, to find yours use `id user` as below:
144150

145-
```
151+
```bash
146152
$ id username
147153
uid=1000(dockeruser) gid=1000(dockergroup) groups=1000(dockergroup)
148154
```
149155

150-
151-
&nbsp;
152-
## Application Setup
153-
154-
By default this container webui will be available on `http://$SERVER_IP:64080`. To setup this container you can either use the envrionment variables we recommend or manually setup the configuration file by leaving out the `QUASSEL_CORE` environment variable among others.
155-
The configuration file using this method can be found at:
156-
```
157-
/config/settings-user.js
158-
```
159-
160-
161156
## Docker Mods
157+
162158
[![Docker Mods](https://img.shields.io/badge/dynamic/yaml?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=quassel-web&query=%24.mods%5B%27quassel-web%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=quassel-web "view available mods for this container.") [![Docker Universal Mods](https://img.shields.io/badge/dynamic/yaml?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=universal&query=%24.mods%5B%27universal%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=universal "view available universal mods.")
163159

164160
We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to enable additional functionality within the containers. The list of Mods available for this image (if any) as well as universal mods that can be applied to any one of our images can be accessed via the dynamic badges above.
165161

166-
167162
## Support Info
168163

169164
* Shell access whilst the container is running: `docker exec -it quassel-web /bin/bash`
@@ -180,38 +175,45 @@ Most of our images are static, versioned, and require an image update and contai
180175
Below are the instructions for updating containers:
181176

182177
### Via Docker Compose
178+
183179
* Update all images: `docker-compose pull`
184180
* or update a single image: `docker-compose pull quassel-web`
185181
* Let compose update all containers as necessary: `docker-compose up -d`
186182
* or update a single container: `docker-compose up -d quassel-web`
187183
* You can also remove the old dangling images: `docker image prune`
188184

189185
### Via Docker Run
186+
190187
* Update the image: `docker pull ghcr.io/linuxserver/quassel-web`
191188
* Stop the running container: `docker stop quassel-web`
192189
* Delete the container: `docker rm quassel-web`
193190
* 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)
194191
* You can also remove the old dangling images: `docker image prune`
195192

196193
### Via Watchtower auto-updater (only use if you don't remember the original parameters)
194+
197195
* Pull the latest image at its tag and replace it with the same env variables in one run:
198-
```
196+
197+
```bash
199198
docker run --rm \
200199
-v /var/run/docker.sock:/var/run/docker.sock \
201200
containrrr/watchtower \
202201
--run-once quassel-web
203202
```
203+
204204
* You can also remove the old dangling images: `docker image prune`
205205

206206
**Note:** We do not endorse the use of Watchtower as a solution to automated updates of existing Docker containers. In fact we generally discourage automated updates. However, this is a useful tool for one-time manual updates of containers where you have forgotten the original parameters. In the long term, we highly recommend using [Docker Compose](https://docs.linuxserver.io/general/docker-compose).
207207

208208
### Image Update Notifications - Diun (Docker Image Update Notifier)
209+
209210
* We recommend [Diun](https://crazymax.dev/diun/) for update notifications. Other tools that automatically update containers unattended are not recommended or supported.
210211

211212
## Building locally
212213

213214
If you want to make local modifications to these images for development purposes or just to customize the logic:
214-
```
215+
216+
```bash
215217
git clone https://github.com/linuxserver/docker-quassel-web.git
216218
cd docker-quassel-web
217219
docker build \
@@ -221,7 +223,8 @@ docker build \
221223
```
222224

223225
The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static`
224-
```
226+
227+
```bash
225228
docker run --rm --privileged multiarch/qemu-user-static:register --reset
226229
```
227230

0 commit comments

Comments
 (0)