Matter Home-Assistant
Hello, I'm trying to configure Home Assistant with Matter server. If I understand I have to put the Docker Matter on the host network. There must be an error in my dockercompose.json because it doesn't work.
{
"schemaVersion": 2,
"$schema": "https://schemas.runtipi.io/dynamic-compose.json",
"services": [
{
"name": "homeassistant",
"container_name": "homeassistant",
"image": "ghcr.io/home-assistant/home-assistant:2025.10.4",
"internalPort": 8123,
"isMain": true,
"volumes": [
{
"hostPath": "${APP_DATA_DIR}/data/config",
"containerPath": "/config"
},
{
"hostPath": "${APP_DATA_DIR}/data/localtime",
"containerPath": "/etc/localtime",
"read_only": true
},
{
"hostPath": "${APP_DATA_DIR}/data/dbus",
"containerPath": "/run/dbus",
"read_only": true
}
],
"restart": "unless-stopped",
"depends_on": ["matter-server"]
},
{
"name": "matter-server",
"container_name": "matter-server",
"image": "ghcr.io/home-assistant-libs/python-matter-server:stable",
"volumes": [
{
"hostPath": "${APP_DATA_DIR}/data/matter",
"containerPath": "/data"
}
],
"network_mode": "host",
"restart": "unless-stopped"
}
]
}
{
"schemaVersion": 2,
"$schema": "https://schemas.runtipi.io/dynamic-compose.json",
"services": [
{
"name": "homeassistant",
"container_name": "homeassistant",
"image": "ghcr.io/home-assistant/home-assistant:2025.10.4",
"internalPort": 8123,
"isMain": true,
"volumes": [
{
"hostPath": "${APP_DATA_DIR}/data/config",
"containerPath": "/config"
},
{
"hostPath": "${APP_DATA_DIR}/data/localtime",
"containerPath": "/etc/localtime",
"read_only": true
},
{
"hostPath": "${APP_DATA_DIR}/data/dbus",
"containerPath": "/run/dbus",
"read_only": true
}
],
"restart": "unless-stopped",
"depends_on": ["matter-server"]
},
{
"name": "matter-server",
"container_name": "matter-server",
"image": "ghcr.io/home-assistant-libs/python-matter-server:stable",
"volumes": [
{
"hostPath": "${APP_DATA_DIR}/data/matter",
"containerPath": "/data"
}
],
"network_mode": "host",
"restart": "unless-stopped"
}
]
}