version: '3.7'
services:
zwave-js-ui:
container_name: zwave-js-ui
image: zwavejs/zwave-js-ui:latest
restart: always
tty: true
stop_signal: SIGINT
environment:
- SESSION_SECRET=mysupersecretkey
- ZWAVEJS_EXTERNAL_CONFIG=/usr/src/app/store/.config-db
# Change if you want log times and dates to match your timezone
# Available at https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
- TZ=Europe/Amsterdam
networks:
- zwave
devices:
# Do not use /dev/ttyUSBX serial devices, as those mappings can change over time.
# Instead, use the /dev/serial/by-id/X serial device for your Z-Wave stick.
- '/dev/serial/by-id/usb-0658_0200-if00:/dev/zwave'
volumes:
- zwave-config:/usr/src/app/store
# Or by using local folder
# - ./store:/usr/src/app/store
ports:
- '8091:8091' # port for web interface
- '3000:3000' # port for Z-Wave JS websocket server
networks:
zwave:
volumes:
zwave-config:
name: zwave-config
external: true
Any help is appreciated.
Thanks
Bart
Raspberry pi 3b
Arduino
KAKU
RfxCom
Zwave2MQTT
OTGW
Chinese sensors temp (Dallas),movement
Tasmota
Esp8266 / 32 espeasy
Zigbee2MQTT
thanks Walter, while checking I came to the mqtt part which I overlooked
Soo fixed, the mqtt-part settings still hold localhost setting iso 192.168.2.100
Raspberry pi 3b
Arduino
KAKU
RfxCom
Zwave2MQTT
OTGW
Chinese sensors temp (Dallas),movement
Tasmota
Esp8266 / 32 espeasy
Zigbee2MQTT
OK so a misleading warning from Zwave-JS-UI?
WARN Z-WAVE: Z-Wave driver not inited, no port configured
could mean:
MQTT server not correctly defined/reached......?
Domoticz running on Udoo X86 (on Ubuntu)
Devices/plugins: ZigbeeforDomoticz (with Xiaomi, Ikea, Tuya devices), Nefit Easy, Midea Airco, Omnik Solar, Goodwe Solar
BartSr wrote: Monday 05 January 2026 14:08
thanks Walter, while checking I came to the mqtt part which I overlooked
Soo fixed, the mqtt-part settings still hold localhost setting iso 192.168.2.100
Localhost inside a docker container is the docker container itself.
Hosturl in the zwave container for the MQTT server should most likely be anything else then localhost/127.0.0.1, unless MQTT runs in the same container.