Cannot connect to raspberrymatic

Hi there,

I’m trying to connect to raspberrymatic through the homematic bridge.
When try to connect, I get:

COMMUNICATION_ERROR
org.xml.sax.SAXException: Unknown XML-RPC tag: title

My bridge config is:

UID: homematic:bridge:af15b48c08
label: Homematic Bridge
thingTypeUID: homematic:bridge
configuration:
  cuxdPort: 8701
  socketMaxAlive: 900
  installModeDuration: 60
  userName: Admin
  callbackRegTimeout: 120
  hmIpPort: 2010
  timeout: 15
  factoryResetOnDeletion: false
  discoveryTimeToLive: -1
  password: xxx
  wiredPort: 2000
  gatewayType: auto
  callbackHost: 192.168.1.61
  useAuthentication: true
  groupPort: 9292
  gatewayAddress: 192.168.1.2
  unpairOnDeletion: false
  rfPort: 2001
  bufferSize: 2048
channels:
  - id: DUTY_CYCLE_RATIO
    channelTypeUID: homematic:DUTY_CYCLE_RATIO
    label: Duty Cycle
    description: Current duty cycle usage
    configuration: {}

I’m starting raspberrymatic in docker with:

docker run -d \
  --name ccu \
  --privileged \
  -v ccu_data:/usr/local:rw \
  -p 2001:2001 \
  -p 2010:2010 \
  -p 9292:9292 \
  ghcr.io/jens-maus/raspberrymatic:latest

raspberrymatic itself works, I’m using an HmIP-RFUSB with some configured devices.
The network seems to be okay as well.

I’m unsure how to debug this or what the exact problem might be - can anyone maybe help?

my mistake, I somehow forgot to add the usb device.
After adding this, it worked:

  -v /lib/modules:/lib/modules:ro \
  -v /run/udev/control:/run/udev/control \