16 lines
414 B
YAML
16 lines
414 B
YAML
---
|
|
name: hass
|
|
services:
|
|
home-assistant:
|
|
container_name: homeassistant
|
|
privileged: true
|
|
restart: unless-stopped
|
|
environment:
|
|
- TZ=America/New_York
|
|
volumes:
|
|
- /docker/hass:/config
|
|
- /run/dbus:/run/dbus:ro
|
|
network_mode: host
|
|
image: ghcr.io/home-assistant/home-assistant:stable
|
|
ports:
|
|
- "8123:8123/tcp"
|