services: homeassistant: container_name: homeassistant image: ghcr.io/home-assistant/home-assistant:stable volumes: - /data/services/homeassistant:/config - /etc/localtime:/etc/localtime:ro - /run/dbus:/run/dbus:ro restart: unless-stopped privileged: true network_mode: host cap_add: - NET_ADMIN - NET_RAW matter: container_name: homeassistant_matter image: ghcr.io/home-assistant-libs/python-matter-server:stable restart: unless-stopped network_mode: host # environment: # MATTER_DCL_PRODUCTIONURL: https://on.main-net.trustasia.com security_opt: - apparmor:unconfined command: --enable-test-net-dcl --port 5580 --listen-address=0.0.0.0 --storage-path=/data --paa-root-cert-dir=/data/credentials --log-level verbose volumes: - /data/services/homeassistant_matter:/data - /run/dbus:/run/dbus:ro