homelab/home-assistant/docker-compose.yml
2025-11-22 22:20:32 -06:00

17 lines
368 B
YAML

version: '3'
services:
homeassistant:
container_name: homeassistant
image: "ghcr.io/home-assistant/home-assistant:stable"
volumes:
- config:/config
# - /run/dbus:/run/dbus:ro
restart: unless-stopped
privileged: true
network_mode: host
environment:
TZ: "America/Chicago"
ports:
- "8123:8123"
volumes:
config: