I'm trying to deploy the python matter container as described here: https://github.com/home-assistant-libs/python-matter-server/tree/main however I'm running into the following "address in use" error. I suspect the container is trying to bind to a port I'm already using but the readme doesn't mention what ports are required or how to change them. Does anyone have any suggestions?
matter-server | chip.exceptions.ChipStackError: src/inet/UDPEndPointImplSockets.cpp:144: OS Error 0x02000062: Address already in use
I'll attach my docker-compose file to be thorough below:
version: "3.3"
services:
python-matter-server:
container_name: matter-server
restart: unless-stopped
security_opt:
- apparmor=unconfined
volumes:
- /mnt/data/app_config/matter_config:/data
network_mode: host
image: ghcr.io/home-assistant-libs/python-matter-server:stable
networks: {}