2024年11月24日星期日 上午3:22:12

Installing matter server docker image on a Raspberry Pi 3B+(Matter over Wi-Fi ) via Docker Compose

8 个月 前
#29793 引用

Installing matter server docker image on a Raspberry Pi 3B+(Matter over Wi-Fi ) via Docker Compose
0
8 个月 前
#29794 引用

Create a compose.yml file
0
8 个月 前
#29795 引用


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
8 个月 前
#29798 引用


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