1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-14 11:23:02 +02:00
dockerfiles/mosquitto/Dockerfile

15 lines
240 B
Docker
Raw Normal View History

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