mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:15 +02:00
15 lines
240 B
Docker
15 lines
240 B
Docker
#
|
|
# Dockerfile for mosquitto
|
|
#
|
|
|
|
FROM alpine
|
|
MAINTAINER kev <noreply@easypi.pro>
|
|
|
|
RUN apk add --no-cache ca-certificates mosquitto
|
|
|
|
VOLUME /etc/mosquitto
|
|
EXPOSE 1883 8883
|
|
|
|
ENTRYPOINT ["mosquitto"]
|
|
CMD ["-c", "/etc/mosquitto/mosquitto.conf"]
|