fix: dockerfile hass

This commit is contained in:
willem.serruys
2026-08-16 13:13:46 +02:00
parent 450b45888a
commit b118ea40ae
5 changed files with 10 additions and 0 deletions

View File

@@ -0,0 +1 @@
# TODO add automations

View File

@@ -7,6 +7,10 @@ default_config:
tts:
- platform: google_translate
automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml
http:
use_x_forwarded_for: true
trusted_proxies:

View File

@@ -0,0 +1 @@
# TODO add scenes

View File

@@ -0,0 +1 @@
# TODO add scripts

View File

@@ -1,3 +1,6 @@
FROM ghcr.io/home-assistant/home-assistant:stable
COPY ./configurations/home-assistant/configuration.yaml /config/configuration.yaml
COPY ./configurations/home-assistant/scenes.yaml /config/scenes.yaml
COPY ./configurations/home-assistant/scripts.yaml /config/scripts.yaml
COPY ./configurations/home-assistant/automations.yaml /config/automations.yaml