diff --git a/homeassistant/README.md b/homeassistant/README.md new file mode 100644 index 0000000..668cf62 --- /dev/null +++ b/homeassistant/README.md @@ -0,0 +1,3 @@ + + +Home Assistant should be accessible using http://:8123 \ No newline at end of file diff --git a/homeassistant/compose.yaml b/homeassistant/compose.yaml new file mode 100644 index 0000000..2f79450 --- /dev/null +++ b/homeassistant/compose.yaml @@ -0,0 +1,13 @@ +services: + homeassistant: + container_name: homeassistant + image: "ghcr.io/home-assistant/home-assistant:stable" + volumes: + - /PATH_TO_YOUR_CONFIG:/config + - /etc/localtime:/etc/localtime:ro + - /run/dbus:/run/dbus:ro + restart: unless-stopped + privileged: true + network_mode: host + environment: + TZ: Europe/London \ No newline at end of file