commit 044ce0b4682bce09d90d522bd9b10ba61c5d5577 Author: paulmataruso Date: Fri Oct 18 21:44:37 2024 +0000 First Upload diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..c37c82d --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,12 @@ +version: '3' +services: + homeassistant: + container_name: homeassistant + image: "ghcr.io/home-assistant/home-assistant:stable" + volumes: + - ./docker-persist/config:/config + - /etc/localtime:/etc/localtime:ro + - /run/dbus:/run/dbus:ro + restart: unless-stopped + privileged: true + network_mode: host