diff --git a/supervisor/docker/homeassistant.py b/supervisor/docker/homeassistant.py index 8435ef7cd..f43aa59fd 100644 --- a/supervisor/docker/homeassistant.py +++ b/supervisor/docker/homeassistant.py @@ -185,4 +185,8 @@ class DockerHomeAssistant(DockerInterface): if docker_container.image.id != docker_image.id: return False + # Check of correct state + if docker_container.status not in ("exited", "running", "created"): + return False + return True