diff options
Diffstat (limited to 'external/homeassistant')
-rw-r--r-- | external/homeassistant/compose.yaml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/external/homeassistant/compose.yaml b/external/homeassistant/compose.yaml new file mode 100644 index 0000000..b95a7ae --- /dev/null +++ b/external/homeassistant/compose.yaml @@ -0,0 +1,11 @@ +name: homeassistant +services: + homeassistant: + container_name: homeassistant + image: "ghcr.io/home-assistant/home-assistant:stable" + volumes: + - "${HOMEASSISTANT_DATA_PATH}:/config" + - /etc/localtime:/etc/localtime:ro + restart: always + privileged: true + network_mode: host |