Done stuff

This commit is contained in:
2021-02-20 00:06:59 +13:00
parent 8a022dd35b
commit 9b7088d131
5 changed files with 102 additions and 1 deletions

10
mqttinflux/Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM python:slim
ENV MQTT_PORT 1883
ENV INFLUX_PORT 8086
RUN pip install influxdb paho-mqtt
COPY main.py /main.py
CMD [ "python", "/main.py" ]