1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-20 04:59:27 +02:00
dockerfiles/mosquitto/Dockerfile

15 lines
244 B
Docker
Raw Normal View History

2015-12-09 00:57:14 +08:00
#
# Dockerfile for mosquitto
#
2021-11-15 13:37:03 +08:00
FROM alpine:3
MAINTAINER EasyPi Software Foundation
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"]