Replies: 1 comment
-
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm having trouble understanding what is happening. I'm running mosquitto and zwave-js-ui in docker containers. The z-wave devices function properly with automations, however I have a high number of RX errors. I'm no expert on configuring docker-compose.yaml.
In the zwav-js-ui log i see: ERROR MQTT: Mqtt client error connect ECONNREFUSED 192.168.0.2:1883
I would like some help on figuring out what is not configured properly.
Home Assistant Container 2025.3.2
zwave-js-ui: 10.1.2.4caeb71
zwave-js: 15.0.3
Thanks in advance,
Dan
========================
mosquitto:
container_name: mosquitto
image: eclipse-mosquitto:latest
restart: unless-stopped
ports:
- 1883:1883
- 9101:9101
expose:
- 1883
- 9101
- 8554
networks:
docker-network:
ipv4_address: 192.168.0.4
environment:
- TZ=America/New_York
volumes:
- ./config:/mosquitto/config
- ./data:/mosquitto/data
- ./log:/mosquitto/log
Beta Was this translation helpful? Give feedback.
All reactions