From 16fd4474d2cdd2c9a5d58a54ba03a91cbfc2d94f Mon Sep 17 00:00:00 2001 From: Joe Gross Date: Sun, 19 Nov 2017 23:38:53 -0800 Subject: [PATCH] Correct container name for restart command (#4021) Using above instructions container name includes the dash. shiny % docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES a9be19e6c76a homeassistant/home-assistant "python -m homeass..." 5 minutes ago Up About a minute 0.0.0.0:8123->8123/tcp home-assistant shiny % docker restart homeassistant Error response from daemon: No such container: homeassistant [1] 67676 exit 1 docker restart homeassistant shiny !1! % docker restart home-assistant home-assistant --- source/_docs/installation/docker.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_docs/installation/docker.markdown b/source/_docs/installation/docker.markdown index 5d027402911..cd8f8b26eef 100644 --- a/source/_docs/installation/docker.markdown +++ b/source/_docs/installation/docker.markdown @@ -83,4 +83,4 @@ This will launch Home Assistant and serve the web interface from port 8123 on yo If you change the configuration you have to restart the server. To do that you have 2 options. 1. You can go to the service developer tool icon service developer tools, select the service `homeassistant/restart` and click "Call Service". - 2. Or you can restart it from a terminal by running `docker restart homeassistant` + 2. Or you can restart it from a terminal by running `docker restart home-assistant`