diff --git a/home-assistant/docker-compose.yml b/home-assistant/docker-compose.yml new file mode 100644 index 0000000..d52d654 --- /dev/null +++ b/home-assistant/docker-compose.yml @@ -0,0 +1,13 @@ +services: + homeassistant: + container_name: homeassistant + image: "ghcr.io/home-assistant/home-assistant:stable" + ports: + - "8123:8123" + volumes: + - ./hass-config:/config + - /etc/localtime:/etc/localtime:ro + - /run/dbus:/run/dbus:ro + restart: unless-stopped + privileged: true + network_mode: host \ No newline at end of file