11 lines
256 B
YAML
11 lines
256 B
YAML
|
|
||
|
version: '3'
|
||
|
services:
|
||
|
homeassistant:
|
||
|
container_name: homeassistant
|
||
|
image: "ghcr.io/home-assistant/home-assistant:stable"
|
||
|
volumes:
|
||
|
- ${APP_DATA_DIR}/config:/config
|
||
|
restart: unless-stopped
|
||
|
privileged: true
|
||
|
network_mode: host
|