1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-25 00:08:49 +00:00
dockerfiles/mosquitto/Dockerfile

15 lines
240 B
Docker
Raw Normal View History

2015-12-08 16:57:14 +00:00
#
# Dockerfile for mosquitto
#
FROM alpine
2017-05-07 23:05:07 +00:00
MAINTAINER kev <noreply@easypi.pro>
2015-12-08 16:57:14 +00:00
2017-05-22 06:48:55 +00:00
RUN apk add --no-cache ca-certificates mosquitto
2015-12-08 16:57:14 +00:00
VOLUME /etc/mosquitto
2016-11-02 17:34:54 +00:00
EXPOSE 1883 8883
2015-12-08 16:57:14 +00:00
ENTRYPOINT ["mosquitto"]
2016-11-02 17:34:54 +00:00
CMD ["-c", "/etc/mosquitto/mosquitto.conf"]