22 lines
630 B
YAML
22 lines
630 B
YAML
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
|
|
|
|
matter:
|
|
container_name: homeassistant_matter
|
|
image: ghcr.io/home-assistant-libs/python-matter-server:stable
|
|
restart: unless-stopped
|
|
network_mode: host
|
|
security_opt:
|
|
- apparmor:unconfined
|
|
volumes:
|
|
- /data/services/homeassistant_matter:/data
|
|
- /run/dbus:/run/dbus:ro |