Home Assisstant
Use docker compose https://www.home-assistant.io/docs/installation/docker/ sudo apt-install docker docker-compose sudo mkdir /opt/home-assistant /opt/home-assistant/config sudo touch /opt/home-assistant/docker-compose.yml As the Docker command becomes more complex, switching to docker-compose can be preferable and support automatically restarting on failure or system restart. Add to the docker-compose.yml file: version: ‘3’ services: homeassistant: container_name: home-assistant image: homeassistant/home-assistant:stable volumes: – /opt/home-assistant/config environment: -…