Skip to content

Commit a50cbe8

Browse files
committed
add PWA icon , update readme
1 parent a573e27 commit a50cbe8

File tree

4 files changed

+44
-0
lines changed

4 files changed

+44
-0
lines changed

Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ LABEL maintainer="thelamer"
1111
ENV TITLE=Filezilla
1212

1313
RUN \
14+
echo "**** add icon ****" && \
15+
curl -o \
16+
/kclient/public/icon.png \
17+
https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/filezilla-logo.png && \
1418
echo "**** install packages ****" && \
1519
if [ -z ${FILEZILLA_VERSION+x} ]; then \
1620
FILEZILLA_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.19/community/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \

Dockerfile.aarch64

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ LABEL maintainer="thelamer"
1111
ENV TITLE=Filezilla
1212

1313
RUN \
14+
echo "**** add icon ****" && \
15+
curl -o \
16+
/kclient/public/icon.png \
17+
https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/filezilla-logo.png && \
1418
echo "**** install packages ****" && \
1519
if [ -z ${FILEZILLA_VERSION+x} ]; then \
1620
FILEZILLA_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.19/community/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,9 @@ This container is based on [Docker Baseimage KasmVNC](https://github.com/linuxse
8181
| FM_HOME | This is the home directory (landing) for the file manager, default "/config". |
8282
| START_DOCKER | If set to false a container with privilege will not automatically start the DinD Docker setup. |
8383
| DRINODE | If mounting in /dev/dri for [DRI3 GPU Acceleration](https://www.kasmweb.com/kasmvnc/docs/master/gpu_acceleration.html) allows you to specify the device to use IE `/dev/dri/renderD128` |
84+
| LC_ALL | Set the Language for the container to run as IE `fr_FR.UTF-8` `ar_AE.UTF-8` |
85+
| NO_DECOR | If set the application will run without window borders for use as a PWA. |
86+
| NO_FULL | Do not autmatically fullscreen applications when using openbox. |
8487

8588
#### Optional run configurations
8689

@@ -90,6 +93,20 @@ This container is based on [Docker Baseimage KasmVNC](https://github.com/linuxse
9093
| `-v /var/run/docker.sock:/var/run/docker.sock` | Mount in the host level Docker socket to either interact with it via CLI or use Docker enabled applications. |
9194
| `--device /dev/dri:/dev/dri` | Mount a GPU into the container, this can be used in conjunction with the `DRINODE` environment variable to leverage a host video card for GPU accelerated appplications. Only **Open Source** drivers are supported IE (Intel,AMDGPU,Radeon,ATI,Nouveau) |
9295

96+
### Language Support - Internationalization
97+
98+
The environment variable `LC_ALL` can be used to start this image in a different language than English simply pass for example to launch the Desktop session in French `LC_ALL=fr_FR.UTF-8`. Some languages like Chinese, Japanese, or Korean will be missing fonts needed to render properly known as cjk fonts, but others may exist and not be installed. We only ensure fonts for Latin characters are present. Fonts can be installed with a mod on startup.
99+
100+
To install cjk fonts on startup as an example pass the environment variables:
101+
102+
```
103+
-e DOCKER_MODS=linuxserver/mods:universal-package-install
104+
-e INSTALL_PACKAGES=font-noto-cjk
105+
-e LC_ALL=zh_CN.UTF-8
106+
```
107+
108+
The web interface has the option for "IME Input Mode" in Settings which will allow non english characters to be used from a non en_US keyboard on the client. Once enabled it will perform the same as a local Linux installation set to your locale.
109+
93110
### Lossless mode
94111

95112
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).
@@ -311,6 +328,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
311328

312329
## Versions
313330

331+
* **10.02.24:** - Update Readme with new env vars and ingest proper PWA icon.
314332
* **02.01.24:** - Rebase to Alpine 3.19.
315333
* **03.07.23:** - Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)
316334
* **13.05.23:** - Rebase to Alpine 3.18.

readme-vars.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@ app_setup_block: |
5454
| FM_HOME | This is the home directory (landing) for the file manager, default "/config". |
5555
| START_DOCKER | If set to false a container with privilege will not automatically start the DinD Docker setup. |
5656
| DRINODE | If mounting in /dev/dri for [DRI3 GPU Acceleration](https://www.kasmweb.com/kasmvnc/docs/master/gpu_acceleration.html) allows you to specify the device to use IE `/dev/dri/renderD128` |
57+
| LC_ALL | Set the Language for the container to run as IE `fr_FR.UTF-8` `ar_AE.UTF-8` |
58+
| NO_DECOR | If set the application will run without window borders for use as a PWA. |
59+
| NO_FULL | Do not autmatically fullscreen applications when using openbox. |
5760
5861
#### Optional run configurations
5962
@@ -63,11 +66,26 @@ app_setup_block: |
6366
| `-v /var/run/docker.sock:/var/run/docker.sock` | Mount in the host level Docker socket to either interact with it via CLI or use Docker enabled applications. |
6467
| `--device /dev/dri:/dev/dri` | Mount a GPU into the container, this can be used in conjunction with the `DRINODE` environment variable to leverage a host video card for GPU accelerated appplications. Only **Open Source** drivers are supported IE (Intel,AMDGPU,Radeon,ATI,Nouveau) |
6568
69+
### Language Support - Internationalization
70+
71+
The environment variable `LC_ALL` can be used to start this image in a different language than English simply pass for example to launch the Desktop session in French `LC_ALL=fr_FR.UTF-8`. Some languages like Chinese, Japanese, or Korean will be missing fonts needed to render properly known as cjk fonts, but others may exist and not be installed. We only ensure fonts for Latin characters are present. Fonts can be installed with a mod on startup.
72+
73+
To install cjk fonts on startup as an example pass the environment variables:
74+
75+
```
76+
-e DOCKER_MODS=linuxserver/mods:universal-package-install
77+
-e INSTALL_PACKAGES=font-noto-cjk
78+
-e LC_ALL=zh_CN.UTF-8
79+
```
80+
81+
The web interface has the option for "IME Input Mode" in Settings which will allow non english characters to be used from a non en_US keyboard on the client. Once enabled it will perform the same as a local Linux installation set to your locale.
82+
6683
### Lossless mode
6784
6885
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).
6986
# changelog
7087
changelogs:
88+
- { date: "10.02.24:", desc: "Update Readme with new env vars and ingest proper PWA icon." }
7189
- {date: "02.01.24:", desc: "Rebase to Alpine 3.19."}
7290
- {date: "03.07.23:", desc: "Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)"}
7391
- {date: "13.05.23:", desc: "Rebase to Alpine 3.18."}

0 commit comments

Comments
 (0)