| 1234567891011121314 |
- FROM debian:stable
- RUN apt update -y
- RUN apt upgrade -y
- RUN apt install -y mosquitto
- run groupadd -g 1002 mqtt
- run useradd -g mqtt -u 1114 -s /bin/false -d /home/mqtt mqtt
- COPY mqtt/mqtt.sh /root/
- RUN chmod a+x /root/mqtt.sh
- RUN mkdir /run/mosquitto
- RUN chown mosquitto:mosquitto /run/mosquitto
- RUN rm -rvf /etc/mosquitto
- RUN ln -s /mnt/Software/Mqtt /etc/mosquitto
- CMD ['/bin/bash','/root/mqtt.sh']
|