compose.yaml.j2 378 B

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