From e33f21521884df931fe3c8898ca23bd3aa682ff3 Mon Sep 17 00:00:00 2001 From: Cris Mathew Date: Thu, 29 Feb 2024 01:24:29 +0300 Subject: [PATCH] Add home-assistant/compose.yml --- home-assistant/compose.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 home-assistant/compose.yml diff --git a/home-assistant/compose.yml b/home-assistant/compose.yml new file mode 100644 index 0000000..1d0d8f6 --- /dev/null +++ b/home-assistant/compose.yml @@ -0,0 +1,12 @@ +version: "3" +services: + homeassistant: + container_name: homeassistant + image: ghcr.io/home-assistant/home-assistant:stable + volumes: + - ./config/:/config + - /etc/localtime:/etc/localtime:ro + restart: unless-stopped + privileged: true + network_mode: host +networks: {}