Skip to content

Commit b0c292f

Browse files
Bot Updating Templated Files
1 parent 6fe0cc7 commit b0c292f

File tree

3 files changed

+16
-21
lines changed

3 files changed

+16
-21
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

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

263263
## Versions
264264

265+
* **03.07.23:** - Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)
265266
* **13.05.23:** - Rebase to Alpine 3.18.
266267
* **18.03.23:** - Rebase to KasmVNC base image.
267268
* **21.10.22:** - Rebase to Alpine 3.16, migrate to s6v3.

readme-vars.yml

Lines changed: 14 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -7,33 +7,28 @@ project_logo: "https://raw.githubusercontent.com/linuxserver/docker-templates/ma
77
project_blurb: "[FIleZilla]({{ project_url }}) Client is a fast and reliable cross-platform FTP, FTPS and SFTP client with lots of useful features and an intuitive graphical user interface."
88
project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}"
99
project_blurb_optional_extras_enabled: false
10-
1110
# supported architectures
1211
available_architectures:
13-
- { arch: "{{ arch_x86_64 }}", tag: "latest"}
14-
- { arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
15-
- { arch: "{{ arch_armhf }}", tag: "arm32v7-latest"}
16-
12+
- {arch: "{{ arch_x86_64 }}", tag: "latest"}
13+
- {arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
1714
# development version
1815
development_versions: false
19-
2016
# container parameters
2117
common_param_env_vars_enabled: true
2218
param_container_name: "{{ project_name }}"
2319
param_usage_include_env: true
2420
param_env_vars:
25-
- { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London." }
21+
- {env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London."}
2622
param_usage_include_vols: true
2723
param_volumes:
28-
- { vol_path: "/config", vol_host_path: "/path/to/config", desc: "Users home directory in the container, stores local files and settings" }
24+
- {vol_path: "/config", vol_host_path: "/path/to/config", desc: "Users home directory in the container, stores local files and settings"}
2925
param_usage_include_ports: true
3026
param_ports:
31-
- { external_port: "3000", internal_port: "3000", port_desc: "FileZilla desktop gui." }
32-
- { external_port: "3001", internal_port: "3001", port_desc: "FileZilla desktop gui HTTPS." }
27+
- {external_port: "3000", internal_port: "3000", port_desc: "FileZilla desktop gui."}
28+
- {external_port: "3001", internal_port: "3001", port_desc: "FileZilla desktop gui HTTPS."}
3329
opt_security_opt_param: true
3430
opt_security_opt_param_vars:
35-
- { run_var: "seccomp=unconfined", compose_var: "seccomp:unconfined", desc: "For Docker Engine only, many modern gui apps need this to function on older hosts as syscalls are unknown to Docker." }
36-
31+
- {run_var: "seccomp=unconfined", compose_var: "seccomp:unconfined", desc: "For Docker Engine only, many modern gui apps need this to function on older hosts as syscalls are unknown to Docker."}
3732
# application setup block
3833
app_setup_block_enabled: true
3934
app_setup_block: |
@@ -71,12 +66,12 @@ app_setup_block: |
7166
### Lossless mode
7267
7368
This container is capable of delivering a true lossless image at a high framerate to your web browser by changing the Stream Quality preset to "Lossless", more information [here](https://www.kasmweb.com/docs/latest/how_to/lossless.html#technical-background). In order to use this mode from a non localhost endpoint the HTTPS port on 3001 needs to be used. If using a reverse proxy to port 3000 specific headers will need to be set as outlined [here](https://github.com/linuxserver/docker-baseimage-kasmvnc#lossless).
74-
7569
# changelog
7670
changelogs:
77-
- { date: "13.05.23:", desc: "Rebase to Alpine 3.18." }
78-
- { date: "18.03.23:", desc: "Rebase to KasmVNC base image." }
79-
- { date: "21.10.22:", desc: "Rebase to Alpine 3.16, migrate to s6v3." }
80-
- { date: "23.12.21:", desc: "Rebase to Alpine 3.15." }
81-
- { date: "26.09.21:", desc: "Rebase to Alpine 3.14." }
82-
- { date: "18.04.21:", desc: "Initial release." }
71+
- {date: "03.07.23:", desc: "Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)"}
72+
- {date: "13.05.23:", desc: "Rebase to Alpine 3.18."}
73+
- {date: "18.03.23:", desc: "Rebase to KasmVNC base image."}
74+
- {date: "21.10.22:", desc: "Rebase to Alpine 3.16, migrate to s6v3."}
75+
- {date: "23.12.21:", desc: "Rebase to Alpine 3.15."}
76+
- {date: "26.09.21:", desc: "Rebase to Alpine 3.14."}
77+
- {date: "18.04.21:", desc: "Initial release."}

0 commit comments

Comments
 (0)