Can’t access Phoscon web UI / set-up in docker

Hi, I’ve just re-setup my Rasp Pi from what it was before. I’ve come across a problem where I can’t get into Phoscon web UI when I’ve setup deconz in docker.

In Portainer I’m getting the following logs / errors:

[deconzcommunity/deconz] Starting deCONZ...
[deconzcommunity/deconz] Current deCONZ version: 2.21.02
[deconzcommunity/deconz] Web UI port: 80
[deconzcommunity/deconz] Websockets port: 443
[deconzcommunity/deconz] Using options --auto-connect=1 --appdata=/opt/deCONZ --dbg-info=1 --dbg-aps=0 --dbg-zcl=0 --dbg-ddf=0 --dbg-dev=0 --dbg-zdp=0 --dbg-ota=0 --dbg-error=0 --dbg-http=0 --http-port=80 --ws-port=443
[deconzcommunity/deconz] Modifying user and group ID
[deconzcommunity/deconz] Checking device group ID
[deconzcommunity/deconz] VNC Disabled
QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-deconz'
libpng warning: iCCP: known incorrect sRGB profile
This plugin does not support propagateSizeHints()
This plugin does not support propagateSizeHints()
20:54:27:444 HTTP Server listen on address 0.0.0.0, port: 80, root: /usr/share/deCONZ/webapp/
20:54:27:452 /opt/deCONZ/config.ini exists and is writeable
20:54:27:452 /opt/deCONZ/zll.db exists and is writeable
20:54:27:549 dev /dev/ttyAMA0
20:54:27:549 COM: /dev/ttyACM0 / serialno: , ConBee II
20:54:27:549 ZCLDB init file /opt/deCONZ/zcldb.txt
20:54:27:658 DDF enabled for Gold status
20:54:28:146 gw run mode: normal
20:54:28:146 GW sd-card image version file does not exist: /opt/deCONZ/gw-version
20:54:28:147 DB sqlite version 3.34.1
20:54:28:148 DB PRAGMA page_count: 46
20:54:28:148 DB PRAGMA page_size: 4096
20:54:28:148 DB PRAGMA freelist_count: 0
20:54:28:148 DB file size 188416 bytes, free pages 0
20:54:28:148 DB PRAGMA user_version: 9
20:54:28:148 DB cleanup
20:54:28:149 DB create temporary views
20:54:28:173 [INFO] - Timezone read is 'Etc/UTC'
20:54:28:173 [INFO] - Environment variable TZ found: Australia/Sydney...
20:54:28:174 Started websocket server on 0.0.0.0, port: 443
20:54:28:176 [INFO] - Found file containing button maps. Parsing data...
20:54:28:189 [INFO] - Button maps loaded.
20:54:28:191 found node plugin: libde_rest_plugin.so - REST API Plugin
20:54:28:192 found node plugin: libde_signal_plugin.so - Signal Monitor Plugin
20:54:28:203 found node plugin: libstd_otau_plugin.so - STD OTAU Plugin
20:54:28:264 dlg action: Read binding table
20:54:29:312 dev /dev/ttyAMA0
20:54:29:312 COM: /dev/ttyACM0 / serialno: , ConBee II
This plugin does not support propagateSizeHints()
20:54:30:940 Device firmware version 0x26720700 ConBee II
20:54:30:964 unlocked max nodes: 512
20:54:30:964 Device protocol version: 0x010E
20:54:31:172 Current channel 11
20:54:31:232 CTRL got nwk update id 1
20:54:31:254 CTRL ANT_CTRL 0x03
20:54:31:273 CTRL ZDP_RESPONSE handler 0x0001
20:54:32:942 GW update firmware found: /usr/share/deCONZ/firmware/deCONZ_ConBeeII_0x26720700.bin.GCF
20:54:32:942 GW firmware version is up to date: 0x26720700
20:54:35:889 DEV Tick.Init: booted after 8000 seconds
20:54:38:575 Announced to internet https://phoscon.de/discover
20:54:38:575 discovery server date: Thu, 25 May 2023 10:54:38 GMT
20:54:38:575 	 local time seems to be ok
20:54:59:436 unknown node 0x0017880109469972 (0xAD53), lqi: 156
20:54:59:436 APS-DATA.indication from unknown node 0x0017880109469972
20:54:59:557 APS-DATA.indication from unknown node 0x0017880109469972
20:54:59:695 APS-DATA.indication from unknown node 0x0017880109469972
20:55:09:634 APS-DATA.indication from unknown node 0x0017880109469972
20:55:19:631 APS-DATA.indication from unknown node 0x0017880109469972
20:55:29:636 APS-DATA.indication from unknown node 0x0017880109469972

My docker compose is:

version: "3"
services:
  deconz:
    image: deconzcommunity/deconz:stable
    container_name: deconz
    restart: always
    privileged: true                # This is important! Without it, the deCONZ image won't be able to connect to Conbee II.
    ports: 
      - 80:80
      - 443:443
    volumes:
      - /opt/deCONZ:/opt/deCONZ
    devices:
      - /dev/ttyACM0                # This is the USB device that Conbee II is running on.
    environment:
      - TZ=Australia/Sydney
      - DECONZ_WEB_PORT=80
      - DECONZ_WS_PORT=443
      - DEBUG_INFO=1
      - DEBUG_APS=0
      - DEBUG_ZCL=0          
      - DEBUG_ZDP=0
      - DEBUG_OTA=0
      - DEBUG_HTTP=0
      - DECONZ_DEVICE=/dev/ttyACM0   # This is the USB device that Conbee II is running on.
      - DECONZ_START_VERBOSE=0

Thanks!

Hi, is this the best place to receive support? Anywhere else I should be trying?

@phdelodder or @senilio you have a idea perhaps?

Everything seems to be configured correctly.

@broomwalker HTTP://servername:80/ are you accessing like this?

1 Like

Good pick-up. I actually flushed out my browser cookies, etc and by doing so it will now load

Thanks!

2 Likes