I am unable to start Home Assistant Core running on docker post it is stopped from "Server Controls" in web UI.
How to start Home Assistant Code stopped from web UI
517 views Asked by Avirup Das At
1
I am unable to start Home Assistant Core running on docker post it is stopped from "Server Controls" in web UI.
Easy answer: restart the host. If I'm not wrong, by default, HA restarts with the host.
If that does not work, you can start your docker container. Run:
docker ps -a
to get the list of all available containers. Identify the HA one. You should have something like this:(note that the status should be
stopped
in your case). Then, you just need to start your HA container. In the example case, that requiresdocker start homeassistant
ordocker start afa90071dd81
.