2024年11月24日星期日 上午1:24:08

Install Matter Server using docker image via docker compose

8 个月 前
#29833 引用
Install Matter Server using docker image via docker compose
0
8 个月 前
#29834 引用


version: "3.8"
services:
  # python-matter-server
  matter-server:
    image: ghcr.io/home-assistant-libs/python-matter-server:stable
    container_name: matter-server
    restart: unless-stopped
    # Required for mDNS to work correctly
    network_mode: host
    security_opt:
      # Needed for Bluetooth via dbus
      - apparmor:unconfined
    volumes:
      # Create an .env file that sets the USERDIR environment variable.
      - ${USERDIR:-$HOME}/docker/matter-server/data:/data/
      - /run/dbus:/run/dbus:ro


https://github.com/home-assistant-libs/python-matter-server/blob/main/compose.yml
0