compose.yaml 370 B

12345678910111213
  1. ---
  2. services:
  3. homeassistant:
  4. container_name: homeassistant
  5. image: ghcr.io/home-assistant/home-assistant:2025.6.2
  6. volumes:
  7. - ./config:/config
  8. - /etc/localtime:/etc/localtime:ro
  9. - /run/dbus:/run/dbus:ro
  10. # devices:
  11. # - /dev/ttyACMO # (optional) Add serial devices to the container
  12. privileged: true
  13. restart: unless-stopped