|
|
@ -13,7 +13,7 @@ Three docker volumes have been created in the image to be used for configuration
|
|
|
|
When creating a container from the image, the default configuration values are used.
|
|
|
|
When creating a container from the image, the default configuration values are used.
|
|
|
|
To use a custom configuration file, mount a **local** configuration file to `/mosquitto/config/mosquitto.conf`
|
|
|
|
To use a custom configuration file, mount a **local** configuration file to `/mosquitto/config/mosquitto.conf`
|
|
|
|
```
|
|
|
|
```
|
|
|
|
docker run -it -p 1883:1883 -p 9001:9001 -v <absolute-path-to-configuration-file>:/mosquitto/config/mosquitto.conf eclipse-mosquitto:<version>
|
|
|
|
docker run -it -p 1883:1883 -v <absolute-path-to-configuration-file>:/mosquitto/config/mosquitto.conf eclipse-mosquitto:<version>
|
|
|
|
```
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Configuration can be changed to:
|
|
|
|
Configuration can be changed to:
|
|
|
@ -40,7 +40,7 @@ docker build -t eclipse-mosquitto:<version> --build-arg VERSION="<version>" .
|
|
|
|
## 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 <path-to-configuration-file>:/mosquitto/config/mosquitto.conf -v /mosquitto/data -v /mosquitto/log eclipse-mosquitto:<version>
|
|
|
|
docker run -it -p 1883:1883 -v <path-to-configuration-file>:/mosquitto/config/mosquitto.conf -v /mosquitto/data -v /mosquitto/log eclipse-mosquitto:<version>
|
|
|
|
```
|
|
|
|
```
|
|
|
|
: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
|
|
|
|