Created
October 15, 2020 23:54
-
-
Save qdm12/f81178b2884d4abc1994a8526235d14f to your computer and use it in GitHub Desktop.
Domoticz docker image dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM debian:buster-slim | |
WORKDIR /domoticz | |
EXPOSE 8080/tcp 443/tcp 6144 | |
ENTRYPOINT [ "/domoticz/domoticz" ] | |
RUN apt-get update -y && \ | |
apt-get install -y wget libusb-0.1-4 libcurl3-gnutls && \ | |
wget -q -O domoticz.tgz https://releases.domoticz.com/releases/release/domoticz_linux_x86_64.tgz && \ | |
tar -xf domoticz.tgz && \ | |
rm domoticz.tgz *.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment