mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-06-16 15:16:56 +00:00
998 B
998 B
Running a development version
If you want to stay on the bleeding-edge Home Assistant Core development branch, you can upgrade to dev
.
{% caution %}
The dev
branch is likely to be unstable. Potential consequences include loss of data and instance corruption.
{% endcaution %}
{% if page.installation == "os" %}
-
Join the dev channel.
ha supervisor options --channel dev
-
Reload the {% term "Home Assistant Supervisor" %}.
ha supervisor reload
-
Update {% term "Home Assistant Core" %} to the latest dev version.
ha core update --backup
The
--backup
flag here ensures that you have a partial backup of your current setup incase you need to downgrade.
{% elsif page.installation == "container" %}
docker pull {{ site.installation.container }}:dev
You then need to recreate the container with the new image.
{% endif %}