Following on from here (thanks @RickKramer for initial assistance).
I have HA installed in a Docker container on a Synology NAS. I have had Zwavejs2mqtt working successfully alongside it in another container. The setup for Zwavejs2mqtt is via docker-compose as follows.
The issue I have is that I enabled the https option from within the Zwavejs2mqtt UI and have now locked myself out of it. When I access https://{ip}:8091
I get: Your connection is not private
I believe I need to manually revert the configuration option in question, but I’m stuck in trying to do so. I understand it’s a folder called zwave-config
given the docker-compose below. Looking under /volume1/docker/zwavejs2mqtt I see the zwave-config folder I believe I created initially, but it is empty. I can’t see a similarly named file anywhere else (possibly at the root). So now I’m stuck.
My questions are:
- Where is my config (it’s clearly saved somewhere as I’ve re-built the Zwavejs2mqtt container and I’m still stuck out), and
- When I find it, how to I revert the offending option
version: '3.7'
services:
zwavejs2mqtt:
container_name: zwavejs2mqtt
image: zwavejs/zwavejs2mqtt:latest
restart: always
tty: true
stop_signal: SIGINT
environment:
- SESSION_SECRET=mysupersecretkey
- ZWAVEJS_EXTERNAL_CONFIG=/usr/src/app/store/.config-db
- TZ=Australia/Perth
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/ttyUSB0:/dev/zwave'
volumes:
- zwave-config:/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