1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-24 05:16:44 +02:00
dockerfiles/mosquitto/Dockerfile

15 lines
240 B
Docker
Raw Normal View History

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