The installation on a QNAP system is done via the app Container Station (here you find information on Container Station by Qnap). If Container Station is not already installed and activated please do so.

Then open the app Container Station and perform the follwing steps to install Roomskills Local Connect:

In the left area go to the area “Applications” and choose “Create Application”

In the field “Application name” you can give the application a name, for example “roomskills_local_connect”.

In the field “YAML code” you enter the following content:

version: '3'
services:
  roomskills_local_connect:
    image: computequg/roomskills-rlc:latest
    restart: unless-stopped
    working_dir: /mnt
    network_mode: "host"
    volumes:
      - roomskills_local_connect:/mnt
volumes:
  roomskills_local_connect:

If there are more than one Network Cards in the server and you want to make sure only one specific IP address is used by Roomskills Local Connect you can specify this address in the yaml file. Assuming the aimed IP address is ‘192.168.1.100’ you find a suitable example here (please change the address to yours before using):

version: '3'
services:
  roomskills_local_connect:
    image: computequg/roomskills-rlc:latest
    restart: unless-stopped
    working_dir: /mnt
    network_mode: "host"
    volumes:
        - roomskills_local_connect:/mnt
    environment:
        RLC_IP: 192.168.1.100
volumes:
  roomskills_local_connect:

That was all you reach the setup page via the adress:

http://<ip_of_qnap_nas>:32655

The Removal

In order to remove Roomskills Local Connect you search for the entry in the Container Station:

 

 

With a click on “Action->Remove” you start the removal process. You need to once confirm, that you really want to remove the container.