1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-23 01:39:27 +02:00
dockerfiles/mosquitto/arm/Dockerfile

15 lines
248 B
Docker
Raw Normal View History

2016-11-02 17:58:14 +02:00
#
# Dockerfile for mosquitto-arm
#
2021-11-15 07:37:03 +02:00
FROM alpine:3
2016-11-02 17:58:14 +02:00
MAINTAINER EasyPi Software Foundation
2017-05-22 08:48:55 +02:00
RUN apk add --no-cache ca-certificates mosquitto
2016-11-02 17:58:14 +02:00
VOLUME /etc/mosquitto
2016-11-02 19:34:54 +02:00
EXPOSE 1883 8883
2016-11-02 17:58:14 +02:00
ENTRYPOINT ["mosquitto"]
2016-11-02 19:34:54 +02:00
CMD ["-c", "/etc/mosquitto/mosquitto.conf"]