diff --git a/homeassistant/docker-compose.yml b/homeassistant/docker-compose.yml new file mode 100644 index 0000000..5dee64d --- /dev/null +++ b/homeassistant/docker-compose.yml @@ -0,0 +1,16 @@ +version: '3' +services: + homeassistant: + image: homeassistant/home-assistant:stable + container_name: homeassistant + restart: unless-stopped + volumes: + - /etc/localtime:/etc/localtime:ro + - ./config:/config + networks: + - homeassistant + +networks: + homeassitant: + external: + name: homeassistant \ No newline at end of file