2024年11月27日星期三 下午2:11:21

Install Matter Server on Unraid(NAS)

8 个月 前
#29674 引用
Matter Server on Unraid


I, too, was easily able to run this docker container in Unraid and connect it to Home-Assistant-Core container.

I used the default settings, nothing changed.

I tested it with one Meross Matter smart plug and it was quite fast and simple. Thanks!


https://github.com/home-assistant-libs/python-matter-server/issues/308
0
8 个月 前
#29679 引用
How To Install Matter Server Docker on Home Assistant in on Unraid
https://digiblur.com/2023/06/27/how-install-matter-server-docker-home-assistant/
0
6 个月 前
#34129 引用
Docker Run


mkdir data
docker run -d \
  --name matter-server \
  --restart=unless-stopped \
  --security-opt apparmor=unconfined \
  -v $(pwd)/data:/data \
  -v /run/dbus:/run/dbus:ro \
  --network=host \
  ghcr.io/home-assistant-libs/python-matter-server:stable
0
6 个月 前
#34130 引用
or

Docker Compose


version: '3'
services:
  matter-server:
    container_name: matter-server
    image: ghcr.io/home-assistant-libs/python-matter-server:stable
    restart: unless-stopped
    security_opt:
      - apparmor=unconfined
    volumes:
      - /opt/matter-server:/data
      - /run/dbus:/run/dbus:ro
    network_mode: host
0