From 490b5069a2d879342390fef9b56709de1e6af7be Mon Sep 17 00:00:00 2001 From: bonterra Date: Sun, 29 Apr 2018 09:59:54 +0200 Subject: [PATCH] Update docker.markdown (#5266) A more detailed installation description for Docker on Raspberry Pi 3 with Raspbian. --- source/_docs/installation/docker.markdown | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/source/_docs/installation/docker.markdown b/source/_docs/installation/docker.markdown index d8e6ed3ff40..bc7369f4158 100644 --- a/source/_docs/installation/docker.markdown +++ b/source/_docs/installation/docker.markdown @@ -16,7 +16,16 @@ Installation with Docker is straightforward. Adjust the following command so tha ```bash $ docker run -d --name="home-assistant" -v /path/to/your/config:/config -v /etc/localtime:/etc/localtime:ro --net=host homeassistant/home-assistant +```​ + +### {% linkable_title Raspberry Pi 3 (Raspbian) %} + +```bash + +$ docker run -d --name="home-assistant" -v /path/to/your/config:/config -v /etc/localtime:/etc/localtime:ro --net=host homeassistant/raspberrypi3-homeassistant:0.XX.x ``` +The Docker container for Raspberry Pi 3 does not have a 'latest' tag so the version number must be specified explicitly, i.e. 0.68.0 or whatever version is desired. This goes for both CLI and Docker Compose. + ### {% linkable_title macOS %}