From 6151dde1d076975642961c20c04fd76333625744 Mon Sep 17 00:00:00 2001 From: Michele Cereda Date: Tue, 7 Feb 2023 03:05:05 +0100 Subject: [PATCH] Added pi-sized docker-compose file for home assistant --- docker/home-assistant/pi.docker-compose.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 docker/home-assistant/pi.docker-compose.yaml diff --git a/docker/home-assistant/pi.docker-compose.yaml b/docker/home-assistant/pi.docker-compose.yaml new file mode 100644 index 0000000..8386c46 --- /dev/null +++ b/docker/home-assistant/pi.docker-compose.yaml @@ -0,0 +1,14 @@ +# sources: +# - https://www.home-assistant.io/installation/raspberrypi + +version: '3' +services: + home-assistant: + container_name: home-assistant + image: "ghcr.io/home-assistant/home-assistant:stable" + volumes: + - ./config:/config + - /etc/localtime:/etc/localtime:ro + restart: unless-stopped + privileged: true + network_mode: host