From 43573cf96dd8081f9ef9219ff18cd4e07cf4ccc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20S=C3=B8rensen?= Date: Mon, 25 May 2020 12:53:59 +0200 Subject: [PATCH] Use stable for docker tag (#13578) --- source/_docs/installation/updating.markdown | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/_docs/installation/updating.markdown b/source/_docs/installation/updating.markdown index 716da0e55bf..fd97b7ff4c2 100644 --- a/source/_docs/installation/updating.markdown +++ b/source/_docs/installation/updating.markdown @@ -24,16 +24,16 @@ The default way to update Home Assistant to the latest release, when available, pip3 install --upgrade homeassistant ``` -For a Docker container, simply pull the latest one: +For a Docker container, simply pull the latest stable one: ```bash -sudo docker pull homeassistant/home-assistant:latest +sudo docker pull homeassistant/home-assistant:stable ``` -For a Raspberry Pi Docker container, simply pull the latest one: +For a Raspberry Pi Docker container, simply pull the latest stable one: ```bash -sudo docker pull homeassistant/raspberrypi3-homeassistant:latest +sudo docker pull homeassistant/raspberrypi3-homeassistant:stable ``` After updating, you must start/restart Home Assistant for the changes to take effect. This means that you will have to restart `hass` itself or the [autostarting](/docs/autostart/) daemon (if applicable). Startup can take a considerable amount of time (i.e., minutes) depending on your device. This is because all requirements are updated as well.