Install via command line
For this instructions we assume docker has been setup on your system already.
First you have to setup a new folder for the data of the docker container. For our example here we use the directory /opt/roomskills_local_connect
sudo mkdir /opt/roomskills_local_connect
Then you have to download the base image
sudo docker pull computequg/roomskills-rlc:latest
To start the Roomskills Local Connect container use the following command
sudo docker run -d --net=host --name roomskills_local_connect -v /opt/roomskills_local_connect:/mnt -w /mnt --restart unless-stopped computequg/roomskills-rlc:latest
You can reach the Roomskills Local Connect configuration page via the following link
http://127.0.0.1:32655
or from another computer in the local network via the address:
http://<ip of the computer running the container>:32655
Uninstall via command line
To uninstall Roomskills Local Connect you have to stop the docker container, delete the docker container and delete the folder with the container data. The commands are:
sudo docker stop roomskills_local_connect
sudo docker rm roomskills_local_connect
sudo rm -rf /opt/roomskills_local_connect