diff --git a/hass-docker-compose.yml b/hass-docker-compose.yml new file mode 100644 index 0000000..1432f72 --- /dev/null +++ b/hass-docker-compose.yml @@ -0,0 +1,11 @@ +services: + homeassistant: + container_name: ${NAME} + image: "ghcr.io/home-assistant/home-assistant:latest" + volumes: + - ${VOLUME_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