I have installed Home Assistant in Docker on a Raspberry Pi 2 with latest Raspberry Pi OS (derived from Debian Trixie). The docker compose looks like this
❯ cat compose.yaml
services:
homeassistant:
container_name: homeassistant
image: "ghcr.io/home-assistant/home-assistant:stable"
volumes:
- config:/config
- /etc/localtime:/etc/localtime:ro
- /run/dbus:/run/dbus:ro
devices:
- /dev/ttyUSB0:/dev/ttyUSB0
restart: unless-stopped
privileged: true
network_mode: host
volumes:
config:
I have attached a Conbee 3 on a short USB extension cable to avoid interference. The stick works in a similarly configured deconz docker container - so USB passthrough issues are unlikely. It is recognized in Hass, but autoconfiguration fails with “Failed to probe the USB device”. Manual adding the ZHA service fails after “automatic network configuration” with an error box just saying “error”. The logs end with
2025-10-12 12:54:42.773 DEBUG (MainThread) [zigpy_deconz.api] Received command CommandId.device_state_changed{'status': <Status.SUCCESS: 0>, 'frame_length': 7, 'device_state': DeviceState(network_state=<NetworkState2.CONNECTED: 2>, device_state=<DeviceStateFlags.APSDE_DATA_CONFIRM|APSDE_DATA_REQUEST_FREE_SLOTS_AVAILABLE: 9>), 'reserved': 0} (seq 71)
2025-10-12 12:54:42.776 DEBUG (MainThread) [zigpy_deconz.api] Sending CommandId.aps_data_confirm{} (seq=71)
2025-10-12 12:54:42.796 DEBUG (MainThread) [zigpy_deconz.uart] Frame received: 0x04470013000c00220f02000000000000000000
2025-10-12 12:54:42.800 DEBUG (MainThread) [zigpy_deconz.api] Received command CommandId.aps_data_confirm{'status': <Status.SUCCESS: 0>, 'frame_length': 19, 'payload_length': 12, 'device_state': DeviceState(network_state=<NetworkState2.CONNECTED: 2>, device_state=<DeviceStateFlags.APSDE_DATA_REQUEST_FREE_SLOTS_AVAILABLE: 8>), 'request_id': 15, 'dst_addr': DeconzAddressEndpoint(address_mode=<AddressMode.NWK: 2>, address=0x0000, endpoint=0), 'src_ep': 0, 'confirm_status': <TXStatus.SUCCESS: 0>, 'reserved1': 0, 'reserved2': 0, 'reserved3': 0, 'reserved4': 0} (seq 71)
2025-10-12 12:54:47.805 DEBUG (MainThread) [zigpy.serial] Waiting for serial port to close
2025-10-12 12:54:47.814 DEBUG (MainThread) [zigpy.serial] Connection lost: None
Full logs here: 2025-10-12 12:54:17.454 DEBUG (MainThread) [zigpy_deconz.uart] Connecting to /de - Pastebin.com
I’m completely at a loss. Hoping someone here can help me out.