Skip to content

Commit

Permalink
Added DECONZ_DEV_TEST_MANAGED environment variable (#238)
Browse files Browse the repository at this point in the history
  • Loading branch information
torandreroland authored Feb 5, 2024
1 parent 9f14c47 commit 78314f7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ Use these environment variables to change the default behaviour of the container
| `-e DEBUG_OTA=0` | Sets the level of the deCONZ command-line flag --dbg-ota (default 0). |
| `-e DEBUG_ERROR=0` | Sets the level of the deCONZ command-line flag --dbg-error (default 0). |
| `-e DEBUG_HTTP=0` | Sets the level of the deCONZ command-line flag --dbg-http (default 0). |
| `-e DECONZ_DEV_TEST_MANAGED=0` | Sets the level of the deCONZ command-line flag --dev-test-managed (default 0). |
| `-e DECONZ_DEVICE=/dev/ttyUSB1` | By default, deCONZ searches for RaspBee at /dev/ttyAMA0 and Conbee at /dev/ttyUSB0; when using other USB devices (e.g. a Z-Wave stick) deCONZ may not find RaspBee/Conbee properly. Set this environment variable to the same string passed to --device to force deCONZ to use the specific USB device. |
| `-e TZ=America/Toronto` | Set the local time zone so deCONZ has the correct time. |
| `-e DECONZ_VNC_MODE=1` | Set this option to enable VNC access to the container to view the deCONZ ZigBee mesh |
Expand Down
1 change: 1 addition & 0 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ ENV DEBIAN_FRONTEND=noninteractive \
DEBUG_OTA=0 \
DEBUG_ERROR=0 \
DEBUG_HTTP=0 \
DECONZ_DEV_TEST_MANAGED=0 \
DECONZ_DEVICE=0 \
DECONZ_VNC_MODE=0 \
DECONZ_VNC_DISPLAY=0 \
Expand Down
1 change: 1 addition & 0 deletions docker/root/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ DECONZ_OPTS="--auto-connect=1 \
--dbg-ota=$DEBUG_OTA \
--dbg-error=$DEBUG_ERROR \
--dbg-http=$DEBUG_HTTP \
--dev-test-managed=$DECONZ_DEV_TEST_MANAGED \
--http-port=$DECONZ_WEB_PORT \
--ws-port=$DECONZ_WS_PORT"

Expand Down

0 comments on commit 78314f7

Please sign in to comment.