18 lines
327 B
Docker
18 lines
327 B
Docker
FROM debian:latest
|
|
|
|
LABEL Maintainer="Wolfgang Hottgenroth <woho@hottis.de>"
|
|
LABEL ImageName="registry.gitlab.com/wolutator/mosquitto-with-auth"
|
|
|
|
RUN \
|
|
apt update && \
|
|
apt install -y mariadb-client openssl libwebsockets8
|
|
|
|
COPY opt/ /opt
|
|
COPY etc/ /opt/etc
|
|
|
|
VOLUME /opt/etc
|
|
EXPOSE 1883/tcp
|
|
EXPOSE 8883/tcp
|
|
EXPOSE 9001/tcp
|
|
|