From faf0530a76a5c08652e658271def5992edc2439d Mon Sep 17 00:00:00 2001 From: "Roger A. Light" Date: Thu, 23 Apr 2020 13:10:11 +0100 Subject: [PATCH] Update example Docker ports. Port 9001 is used by Intel drivers on Windows, so some users are suddenly seeing a problem. Issue #1580. --- docker/1.4.12/README.md | 4 ++-- docker/1.5/README.md | 2 +- docker/1.6/README.md | 2 +- docker/generic/README.md | 4 ++-- docker/local/README.md | 5 +++-- 5 files changed, 9 insertions(+), 8 deletions(-) diff --git a/docker/1.4.12/README.md b/docker/1.4.12/README.md index 1ad42798ce..d5b68a4552 100644 --- a/docker/1.4.12/README.md +++ b/docker/1.4.12/README.md @@ -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. 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 :/mosquitto/config/mosquitto.conf eclipse-mosquitto:1.4.12 +docker run -it -p 1883:1883 -v :/mosquitto/config/mosquitto.conf eclipse-mosquitto:1.4.12 ``` Configuration can be changed to: @@ -42,7 +42,7 @@ docker build -t eclipse-mosquitto:1.4.12 . ##Run Run a container using the new image: ``` -docker run -it -p 1883:1883 -p 9001:9001 -v :/mosquitto/config/mosquitto.conf -v /mosquitto/data -v /mosquitto/log eclipse-mosquitto:1.4.12 +docker run -it -p 1883:1883 -v :/mosquitto/config/mosquitto.conf -v /mosquitto/data -v /mosquitto/log eclipse-mosquitto:1.4.12 ``` :boom: if the mosquitto configuration (mosquitto.conf) was modified to use non-default ports, the docker run command will need to be updated diff --git a/docker/1.5/README.md b/docker/1.5/README.md index ce91cd0343..8a54a86b77 100644 --- a/docker/1.5/README.md +++ b/docker/1.5/README.md @@ -30,7 +30,7 @@ to use non-default ports, the docker run command will need to be updated to expose the ports that have been configured, for example: ``` -docker run -it -p 1883:1883 -p 9001:9001 -v :/mosquitto/config/mosquitto.conf eclipse-mosquitto: +docker run -it -p 1883:1883 -p 8080:8080 -v :/mosquitto/config/mosquitto.conf eclipse-mosquitto: ``` Configuration can be changed to: diff --git a/docker/1.6/README.md b/docker/1.6/README.md index ce91cd0343..8a54a86b77 100644 --- a/docker/1.6/README.md +++ b/docker/1.6/README.md @@ -30,7 +30,7 @@ to use non-default ports, the docker run command will need to be updated to expose the ports that have been configured, for example: ``` -docker run -it -p 1883:1883 -p 9001:9001 -v :/mosquitto/config/mosquitto.conf eclipse-mosquitto: +docker run -it -p 1883:1883 -p 8080:8080 -v :/mosquitto/config/mosquitto.conf eclipse-mosquitto: ``` Configuration can be changed to: diff --git a/docker/generic/README.md b/docker/generic/README.md index 421cb91d90..4e0279c782 100644 --- a/docker/generic/README.md +++ b/docker/generic/README.md @@ -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. 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 :/mosquitto/config/mosquitto.conf eclipse-mosquitto: +docker run -it -p 1883:1883 -v :/mosquitto/config/mosquitto.conf eclipse-mosquitto: ``` Configuration can be changed to: @@ -40,7 +40,7 @@ docker build -t eclipse-mosquitto: --build-arg VERSION="" . ## Run Run a container using the new image: ``` -docker run -it -p 1883:1883 -p 9001:9001 -v :/mosquitto/config/mosquitto.conf -v /mosquitto/data -v /mosquitto/log eclipse-mosquitto: +docker run -it -p 1883:1883 -v :/mosquitto/config/mosquitto.conf -v /mosquitto/data -v /mosquitto/log eclipse-mosquitto: ``` :boom: if the mosquitto configuration (mosquitto.conf) was modified to use non-default ports, the docker run command will need to be updated diff --git a/docker/local/README.md b/docker/local/README.md index f11086aa84..210455f9b6 100644 --- a/docker/local/README.md +++ b/docker/local/README.md @@ -29,10 +29,11 @@ docker run -it -p 1883:1883 -v :/mosquitto/ :boom: if the mosquitto configuration (mosquitto.conf) was modified to use non-default ports, the docker run command will need to be updated -to expose the ports that have been configured, for example: +to expose the ports that have been configured, for example if you use port 8080 +for websockets as well as port 1883: ``` -docker run -it -p 1883:1883 -p 9001:9001 -v :/mosquitto/config/mosquitto.conf eclipse-mosquitto: +docker run -it -p 1883:1883 -p 8080:8080 -v :/mosquitto/config/mosquitto.conf eclipse-mosquitto: ``` Configuration can be changed to: