Fix 1.4.10 docker files.

pull/347/merge
Roger A. Light 9 years ago
parent 37cbadc311
commit 53616be0e2

@ -3,7 +3,7 @@ MAINTAINER David Audet <david.audet@ca.com>
LABEL Description="Eclipse Mosquitto MQTT Broker" LABEL Description="Eclipse Mosquitto MQTT Broker"
RUN apk --no-cache --update add mosquitto=1.4.10-r2 && \ RUN apk --no-cache add mosquitto=1.4.10-r2 && \
mkdir -p /mosquitto/config /mosquitto/data /mosquitto/log && \ mkdir -p /mosquitto/config /mosquitto/data /mosquitto/log && \
cp /etc/mosquitto/mosquitto.conf /mosquitto/config && \ cp /etc/mosquitto/mosquitto.conf /mosquitto/config && \
chown -R mosquitto:mosquitto /mosquitto chown -R mosquitto:mosquitto /mosquitto

@ -1,4 +1,4 @@
#Eclipse Mosquitto v1.4.8 Docker Image #Eclipse Mosquitto v1.4.10 Docker Image
##Mount Points ##Mount Points
@ -15,7 +15,7 @@ Three mount points have been created in the image to be used for configuration,
When running the image, the default configuration values are used. When running the image, the default configuration values are used.
To use a custom configuration file, mount a **local** configuration file to `/mosquitto/conf/mosquitto.conf` To use a custom configuration file, mount a **local** configuration file to `/mosquitto/conf/mosquitto.conf`
``` ```
docker run -it -p 1883:1883 -p 9001:9001 -v mosquitto.conf:/mosquitto/data/mosquitto.conf mosquitto:1.4.8 docker run -it -p 1883:1883 -p 9001:9001 -v mosquitto.conf:/mosquitto/data/mosquitto.conf mosquitto:1.4.10
``` ```
Configuration can be changed to: Configuration can be changed to:
@ -36,13 +36,13 @@ log_dest file /mosquitto/log/mosquitto.log
##Build ##Build
Build the image: Build the image:
``` ```
docker build -t mosquitto:1.4.8 . docker build -t mosquitto:1.4.10 .
``` ```
##Run ##Run
Run a container using the new image: Run a container using the new image:
``` ```
docker run -it -p 1883:1883 -p 9001:9001 -v mosquitto.conf:/mosquitto/data/mosquitto.conf -v /mosquitto/data -v /mosquitto/log mosquitto:1.4.8 docker run -it -p 1883:1883 -p 9001:9001 -v mosquitto.conf:/mosquitto/data/mosquitto.conf -v /mosquitto/data -v /mosquitto/log mosquitto:1.4.10
``` ```
:boom: if the mosquitto configuration (mosquitto.conf) was modified :boom: if the mosquitto configuration (mosquitto.conf) was modified
to use non-default ports, the docker run command will need to be updated to use non-default ports, the docker run command will need to be updated

Loading…
Cancel
Save