Docker container for Loxone Config
The windows GUI of the Loxone Config application is run through Wine and accessed on a modern web browser (no installation or configuration needed on client side) or via any VNC client.
This container is based on the absolutely fantastic jlesage/baseimage-gui. All the hard work to make GUI applications possible inside your browser via docker has been done by them, and I shamelessly copied the README.md from mikenye/docker-picard. For advanced usage or modification I suggest you check out their README.
Here is an example of a docker-compose.yml
file that can be used with
Docker Compose.
Make sure to adjust according to your needs. Note that only mandatory network ports are part of the example.
version: '3.8'
services:
loxone-config:
image: "ghcr.io/lian/docker-loxone-config:main"
container_name: loxone-config
ports:
- "5800:5800"
environment:
- VNC_PASSWORD=test
- USER_ID=1000
- GROUP_ID=1000
- DISPLAY_WIDTH=1920
- DISPLAY_HEIGHT=1080
- HOME=/config/
- WINEPREFIX=/config/wine
- XLANG=de
volumes:
- "./config:/config:rw"
NOTE: On first launch, the required fonts, libraries and Loxone Config are installed into /config/wine
. Further launches skip this step. To start clean again, delete /config/wine
.
Launch the Loxone Config docker container with the following commands:
# create empty config directory
mkdir -p config
# ensure USER_ID and GROUP_ID from docker-compose.yml are correct
id
# start loxone config container
docker compose up
Browse to http://your-host-ip:5800
to access the Loxone Config GUI.
The following table describes data paths used by the container. Your host folder ./config
is mounted into the container to /config
Container path | Description |
---|---|
/config |
This is where the application stores its configuration, log and any files needing persistency. |
/config/Loxone |
This is where Loxone Config stores its configuration and project files. |
/config/wine |
This is where Wine stores its Loxone Config Windows installation. (can be removed for a fresh install) |
To customize some properties of the container, the following environment
variables can be changed inside docker-compose.yml
file. Value
of this parameter has the format <VARIABLE_NAME>=<VALUE>
.
Variable | Description | Default |
---|---|---|
USER_ID |
ID of the user the application runs as. See User/Group IDs to better understand when this should be set. | 1000 |
GROUP_ID |
ID of the group the application runs as. See User/Group IDs to better understand when this should be set. | 1000 |
TZ |
[TimeZone] of the container. Timezone can also be set by mapping /etc/localtime between the host and the container. |
Etc/UTC |
KEEP_APP_RUNNING |
When set to 1 , the application will be automatically restarted if it crashes or if user quits it. |
0 |
DISPLAY_WIDTH |
Width (in pixels) of the application's window. | 1280 |
DISPLAY_HEIGHT |
Height (in pixels) of the application's window. | 768 |
SECURE_CONNECTION |
When set to 1 , an encrypted connection is used to access the application's GUI (either via web browser or VNC client). See the Security section for more details. |
0 |
VNC_PASSWORD |
Password needed to connect to the application's GUI. See the VNC Password section for more details. | (unset) |
XLANG |
Keyboard map to be used by XVNC/Loxone Config. Use this to set specific keyboard maps via setxkbmap. See the keyboard maps section for more details. | de |
Here is the list of ports used by the container. They can be mapped to the host
via the ports
inside docker-compose.yml
. Each mapping is defined in the
following format: <HOST_PORT>:<CONTAINER_PORT>
. The port number inside the
container cannot be changed, but you are free to use any port on the host side.
Port | Mapping to host | Description |
---|---|---|
5800 | Mandatory | Port used to access the application's GUI via the web interface. |
5900 | Optional | Port used to access the application's GUI via the VNC protocol. Optional if no VNC client is used. |
NOTE: For additional security you should bind to localhost only to prevent other devices in your network from accessing the Loxone Config. 127.0.0.1:5800:5800
instead of 5800:5800
inside docker-compose.yml
.
Keyboard maps are set via setxkbmap. See the setxkbmap configuration options section "layout" for more details.
Common keyboard maps are:
map | Language | Default |
---|---|---|
us | English (US) | - |
en | English | - |
at | German (Austria) | - |
ch | German (Switzerland) | - |
de | German | yes |
fr | French | - |
When using data volumes, permissions issues can occur between the host and the container. For example, the user within the container may not exists on the host. This could prevent the host from properly accessing files and folders on the shared volume.
To avoid any problem, you can specify the user the application should run as.
This is done by passing the user ID and group ID to the container via the
USER_ID
and GROUP_ID
environment variables.
To find the right IDs to use, issue the following command on the host, with the user owning the data volume on the host:
id <username>
Which gives an output like this one:
uid=1000(myuser) gid=1000(myuser) groups=1000(myuser),4(adm),24(cdrom),27(sudo),46(plugdev),113(lpadmin)
The value of uid
(user ID) and gid
(group ID) are the ones that you should
be given the container.
Assuming that container's ports are mapped to the same host's ports, the graphical interface of the application can be accessed via:
- A web browser:
http://<HOST IP ADDR>:5800
- Any VNC client:
<HOST IP ADDR>:5900
By default, access to the application's GUI is done over an unencrypted connection (HTTP or VNC).
Secure connection can be enabled via the SECURE_CONNECTION
environment
variable. See the Environment Variables section for
more details on how to set an environment variable.
When enabled, application's GUI is performed over an HTTPs connection when accessed with a browser. All HTTP accesses are automatically redirected to HTTPs.
When using a VNC client, the VNC connection is performed over SSL. Note that few VNC clients support this method. SSVNC is one of them.
Here are the certificate files needed by the container. By default, when they are missing, self-signed certificates are generated and used. All files have PEM encoded, x509 certificates.
Container Path | Purpose | Content |
---|---|---|
/config/certs/vnc-server.pem |
VNC connection encryption. | VNC server's private key and certificate, bundled with any root and intermediate certificates. |
/config/certs/web-privkey.pem |
HTTPs connection encryption. | Web server's private key. |
/config/certs/web-fullchain.pem |
HTTPs connection encryption. | Web server's certificate, bundled with any root and intermediate certificates. |
NOTE: To prevent any certificate validity warnings/errors from the browser or VNC client, make sure to supply your own valid certificates.
NOTE: Certificate files are monitored and relevant daemons are automatically restarted when changes are detected.
To restrict access to your application, a password can be specified. This can be done via two methods:
- By using the
VNC_PASSWORD
environment variable. - By creating a
.vncpass_clear
file at the root of the/config
volume. This file should contains the password in clear-text. During the container startup, content of the file is obfuscated and moved to.vncpass
.
The level of security provided by the VNC password depends on two things:
- The type of communication channel (encrypted/unencrypted).
- How secure access to the host is.
When using a VNC password, it is highly desirable to enable the secure connection to prevent sending the password in clear over an unencrypted channel.
ATTENTION: Password is limited to 8 characters. This limitation comes from the Remote Framebuffer Protocol RFC (see section 7.2.2). Any characters beyhond the limit are ignored.
To get shell access to a the running container, execute the following command:
docker exec -it loxone-config bash
Having troubles with the container or have questions? Please create a new issue.
- t_heinrich for bug reports
- timboettiger for keyboard maps