From 825ee7ed2c2fdd88c87b7a872c5ff8184f7551c4 Mon Sep 17 00:00:00 2001 From: tom Date: Sat, 18 May 2024 21:47:41 +0200 Subject: [PATCH] Add docker-compose.yaml --- docker-compose.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 docker-compose.yaml diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..ac838c0 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,12 @@ +version: '3' +services: + homeassistant: + container_name: homeassistant + image: "ghcr.io/home-assistant/raspberrypi4-homeassistant:stable" + volumes: + - ./data/config:/config + - /etc/localtime:/etc/localtime:ro + restart: unless-stopped + privileged: true + network_mode: host + \ No newline at end of file