I've been running Domoticz in Docker using the Linuxserver Docker image but it doesn't give me the latest version so I decided to make my own.
In the image, I clone the domoticz git and build it, which is succesful, but when I start the image and login I still get the message saying that a later version is available. It says version 11995 is available.
I thought I'd be getting the latest version automatically when building from source?
This is the part in my dockerfile where I clone the repo and build it:
Code: Select all
cd /opt && \
git clone --depth 1 https://github.com/domoticz/domoticz.git domoticz && \
cd domoticz && \
cmake \
-DCMAKE_BUILD_TYPE=Release \
-Wno-dev -Wno-deprecated && \
make && \
rm -rf /opt/domoticz/.git* && \
Thanks!