Pin mosquitto to 1.6.14
Mosquitto 2.0 adds a breaking change where port will be bound to the loopback device. This makes integration with docker difficult (requiring an additional config file). Since this is on a private network, we'll just resolve by pinning to an older reelase.
This commit is contained in:
parent
dc7aa59b7d
commit
188fc49a77
1 changed files with 1 additions and 1 deletions
|
@ -235,7 +235,7 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
- /etc/localtime:/etc/localtime:ro
|
- /etc/localtime:/etc/localtime:ro
|
||||||
mqtt:
|
mqtt:
|
||||||
image: eclipse-mosquitto
|
image: eclipse-mosquitto:1.6.14
|
||||||
container_name: mqtt
|
container_name: mqtt
|
||||||
restart: always
|
restart: always
|
||||||
ports:
|
ports:
|
||||||
|
|
Loading…
Reference in a new issue