compose.yaml 585 B

123456789101112131415161718192021222324
  1. ---
  2. name: "Home Assistant"
  3. description: "A self-hosted home automation platform"
  4. version: "0.0.1"
  5. date: "2023-10-01"
  6. author: "Christian Lempa"
  7. tags:
  8. - homeassistant
  9. - automation
  10. - monitoring
  11. - observability
  12. ---
  13. services:
  14. homeassistant:
  15. container_name: homeassistant
  16. image: ghcr.io/home-assistant/home-assistant:2025.8.3
  17. volumes:
  18. - ./config:/config
  19. - /etc/localtime:/etc/localtime:ro
  20. - /run/dbus:/run/dbus:ro
  21. # devices:
  22. # - /dev/ttyACMO # (optional) Add serial devices to the container
  23. privileged: true
  24. restart: unless-stopped