June 15, 20197 yr I am tinkering with some remote control of my HVAC system, and found a neat project that requires a nodejs server to be run: https://github.com/sushilks/kumojs There's a dockerfile provided but not sure how to install it in unraid. This particular app doesn't come up in dockerhub search in CA. Edited June 15, 20197 yr by tmchow
June 15, 20197 yr You need to download the repository (files), and build it yourself To create a container to run the package use the docker directory Build the container cp build/kumo.cfg docker/ cd docker ./build_kumojs to run the container (I Use shared namespace in my case) docker run --net=host -d --name kumojs --restart unless-stopped --tmpfs /run --tmpfs /run/lock sushilks/kumojs /bin/bash -c ". /root/.nvm/nvm.sh && /root/run_kumojs.sh"
Archived
This topic is now archived and is closed to further replies.