You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
303 B
11 lines
303 B
6 years ago
|
FROM debian:stretch
|
||
|
|
||
|
LABEL Author="Alex Mikhalev"
|
||
|
LABEL Description="Eclipse Mosquitto MQTT Broker"
|
||
|
|
||
|
RUN apt-get update && \
|
||
|
apt-get install -y mosquitto mosquitto-auth-plugin
|
||
|
|
||
|
COPY sprinklers3.mosquitto.conf /etc/mosquitto/conf.d/
|
||
|
|
||
|
CMD ["/usr/sbin/mosquitto", "-c", "/etc/mosquitto/mosquitto.conf"]
|