Sign inSign up

basschipper/docker-otmonitor

By basschipper

Updated over 4 years ago

The Opentherm Monitor helps you configure and monitor your opentherm gateway (OTGW).

Image
0

1M+

Dockerfile
FROM python:3.6

RUN apt-get update \
  && apt-get install -y wget python3-tk \
  && rm -rf /var/lib/apt/lists/*

RUN mkdir /app && mkdir /data \
  && /usr/bin/wget http://otgw.tclcode.com/download/otmonitor-x64 -O /app/otmonitor \
  && chmod +x /app/otmonitor

CMD ["/app/otmonitor", "--daemon", "-f", "/data/otmonitor.conf"]