| 123456789101112131415161718192021222324 |
- ---
- name: "Home Assistant"
- description: "A self-hosted home automation platform"
- version: "0.0.1"
- date: "2023-10-01"
- author: "Christian Lempa"
- tags:
- - homeassistant
- - automation
- - monitoring
- - observability
- ---
- services:
- homeassistant:
- container_name: homeassistant
- image: ghcr.io/home-assistant/home-assistant:2025.8.3
- volumes:
- - ./config:/config
- - /etc/localtime:/etc/localtime:ro
- - /run/dbus:/run/dbus:ro
- # devices:
- # - /dev/ttyACMO # (optional) Add serial devices to the container
- privileged: true
- restart: unless-stopped
|