Installation on Docker
Installation with Docker is straightforward. Adjust the following command so that /path/to/your/config/
points at the folder where you want to store your config and run it:
Linux
$ docker run -d --name="home-assistant" -v /path/to/your/config:/config -v /etc/localtime:/etc/localtime:ro --net=host homeassistant/home-assistant
macOS
When using boot2docker
on macOS you are unable to map the local time to your Docker container. Use -e "TZ=America/Los_Angeles"
instead of -v /etc/localtime:/etc/localtime:ro
. Replace “America/Los_Angeles” with your timezone.
Additionally, if your expectation is that you will be able to browse directly to http://localhost:8123
on your macOS host, then you will also need to replace the --net=host
switch with -p 8123:8123
. This is currently the only way to forward ports on to your actual host (macOS) machine instead of the virtual machine inside xhyve
. More detail on this can be found in the docker forums.
$ docker run -d --name="home-assistant" -v /path/to/your/config:/config -e "TZ=America/Los_Angeles" -p 8123:8123 homeassistant/home-assistant
Restart
This will launch Home Assistant and serve the web interface from port 8123 on your Docker host.
If you change the configuration you have to restart the server. To do that you have 2 options.
- You can go to the
service developer tools, select the service
homeassistant/restart
and click “Call Service”. - Or you can restart it from an terminal by running
docker restart home-assistant