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

Commit bdd99d9

Browse files
Bot Updating Templated Files
1 parent 69b538c commit bdd99d9

File tree

3 files changed

+19
-30
lines changed

3 files changed

+19
-30
lines changed

.github/ISSUE_TEMPLATE/issue.bug.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ body:
5353
options:
5454
- x86-64
5555
- arm64
56-
- armhf
5756
validations:
5857
required: true
5958
- type: textarea

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ The architectures supported by this image are:
5656
| :----: | :----: | ---- |
5757
| x86-64 || amd64-\<version tag\> |
5858
| arm64 || arm64v8-\<version tag\> |
59-
| armhf | | arm32v7-\<version tag\> |
59+
| armhf | | |
6060

6161
## Application Setup
6262

@@ -240,6 +240,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
240240

241241
## Versions
242242

243+
* **06.07.23:** - Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)
243244
* **13.02.23:** - Rebasing to Alpine 3.17, migrate to s6v3.
244245
* **12.02.22:** - Rebasing to alpine 3.15.
245246
* **01.06.20:** - Rebasing to alpine 3.12.

readme-vars.yml

Lines changed: 17 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -4,49 +4,38 @@
44
project_name: quassel-web
55
project_url: "https://github.com/magne4000/quassel-webserver"
66
project_logo: "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/quassel-web-banner.png"
7-
project_blurb: |
8-
[{{ project_name|capitalize }}]({{ project_url }}) 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/)
7+
project_blurb: "[{{ project_name|capitalize }}]({{ project_url }}) 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/) \n"
98
project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}"
10-
119
# supported architectures
1210
available_architectures:
13-
- { arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
14-
- { arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
15-
- { arch: "{{ arch_armhf }}", tag: "arm32v6-latest"}
16-
11+
- {arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
12+
- {arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
1713
# container parameters
1814
param_container_name: "{{ project_name }}"
1915
param_usage_include_vols: true
2016
param_volumes:
21-
- { vol_path: "/config", vol_host_path: "/path/to/data", desc: "this will store config on the docker host" }
17+
- {vol_path: "/config", vol_host_path: "/path/to/data", desc: "this will store config on the docker host"}
2218
param_usage_include_env: true
2319
param_env_vars:
24-
- { env_var: "QUASSEL_CORE", env_value: "192.168.1.10", desc: "specify the URL or IP address of your Quassel Core instance" }
25-
- { env_var: "QUASSEL_PORT", env_value: "4242", desc: "specify the port of your Quassel Core instance" }
26-
20+
- {env_var: "QUASSEL_CORE", env_value: "192.168.1.10", desc: "specify the URL or IP address of your Quassel Core instance"}
21+
- {env_var: "QUASSEL_PORT", env_value: "4242", desc: "specify the port of your Quassel Core instance"}
2722
param_usage_include_ports: true
2823
param_ports:
29-
- { external_port: "64443", internal_port: "64443", port_desc: "Quassel-web https webui" }
30-
24+
- {external_port: "64443", internal_port: "64443", port_desc: "Quassel-web https webui"}
3125
# optional container parameters
3226
opt_param_usage_include_env: true
3327
opt_param_env_vars:
34-
- { env_var: "URL_BASE", env_value: "/quassel", desc: "Specify a url-base in reverse proxy setups ie. `/quassel`" }
35-
28+
- {env_var: "URL_BASE", env_value: "/quassel", desc: "Specify a url-base in reverse proxy setups ie. `/quassel`"}
3629
# application setup block
3730
app_setup_block_enabled: true
38-
app_setup_block: |
39-
By default this container webui will be available on `https://$SERVER_IP:64443`. 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.
40-
The configuration file using this method can be found at:
41-
```
42-
/config/settings-user.js
43-
```
31+
app_setup_block: "By default this container webui will be available on `https://$SERVER_IP:64443`. 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. \nThe configuration file using this method can be found at:\n```\n/config/settings-user.js\n```\n"
4432
# changelog
4533
changelogs:
46-
- { date: "13.02.23:", desc: "Rebasing to Alpine 3.17, migrate to s6v3." }
47-
- { date: "12.02.22:", desc: "Rebasing to alpine 3.15." }
48-
- { date: "01.06.20:", desc: "Rebasing to alpine 3.12." }
49-
- { date: "19.12.19:", desc: "Rebasing to alpine 3.11." }
50-
- { date: "28.06.19:", desc: "Rebasing to alpine 3.10." }
51-
- { date: "18.05.19:", desc: "Reconfigure environmental variable setup." }
52-
- { date: "28.04.19:", desc: "Initial Release." }
34+
- {date: "06.07.23:", desc: "Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)"}
35+
- {date: "13.02.23:", desc: "Rebasing to Alpine 3.17, migrate to s6v3."}
36+
- {date: "12.02.22:", desc: "Rebasing to alpine 3.15."}
37+
- {date: "01.06.20:", desc: "Rebasing to alpine 3.12."}
38+
- {date: "19.12.19:", desc: "Rebasing to alpine 3.11."}
39+
- {date: "28.06.19:", desc: "Rebasing to alpine 3.10."}
40+
- {date: "18.05.19:", desc: "Reconfigure environmental variable setup."}
41+
- {date: "28.04.19:", desc: "Initial Release."}

0 commit comments

Comments
 (0)