Files
mosquitto/docker/Dockerfile
Márcio Fernandes 088b8172c3
All checks were successful
/ deploy (push) Successful in 15s
/ notify-portainer (push) Successful in 1s
modified: docker/Dockerfile
2024-11-03 00:15:56 +00:00

11 lines
490 B
Docker

FROM eclipse-mosquitto:latest
LABEL org.opencontainers.image.documentation="https://git.limbosolutions.com/marcio.fernandes/mosquitto/src/branch/master/docker/README.md"
LABEL org.opencontainers.image.url="https://git.limbosolutions.com/marcio.fernandes/mosquitto"
LABEL org.opencontainers.image.description="For more information and examples check Documentation."
COPY run.sh /mosquitto/run.sh
RUN chmod +x mosquitto/run.sh
ENTRYPOINT ["/docker-entrypoint.sh"]
CMD ["/mosquitto/run.sh"]