mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-14 11:23:34 +02:00
15 lines
234 B
Docker
15 lines
234 B
Docker
#
|
|
# Dockerfile for mosquitto
|
|
#
|
|
|
|
FROM alpine
|
|
MAINTAINER kev <noreply@easypi.info>
|
|
|
|
RUN apk add --no-cache mosquitto
|
|
|
|
VOLUME /etc/mosquitto
|
|
EXPOSE 1883
|
|
|
|
ENTRYPOINT ["mosquitto"]
|
|
CMD ["-c", "/etc/mosquitto/mosquitto.conf", "-p", "1883"]
|