Skip to content

Instantly share code, notes, and snippets.

@qdm12
Created October 15, 2020 23:54
Show Gist options
  • Save qdm12/f81178b2884d4abc1994a8526235d14f to your computer and use it in GitHub Desktop.
Save qdm12/f81178b2884d4abc1994a8526235d14f to your computer and use it in GitHub Desktop.
Domoticz docker image dockerfile
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