Notes on Home Assistant Core vs Home Assistant Operating System
Once I decided to try Home Assistant, the next decision is how to run it. Installation documentation listed many options. Since I'm in the kick-the-tires trial stage, I am not yet ready to dedicate a computer to the task (not even a Raspberry Pi) so I quickly focused on running Home Assistant inside a virtualized environment on my home server. But even then, that left me with two options: run Home Assistant Core in a Docker container, or run Home Assistant Operating System in a virtual machine.
Reading into more details, I was surprised to learn that both cases run Home Assistant Core in a Docker container. The difference is that Home Assistant Operating System also includes a "Supervisor" module that helps manage the Docker instance, doing things like automatic updates (and rollback in case of failure), making backups, and setting up additional Docker instances for Home Assistant add-ons. (ESPHome dashboard is one such addon.) If I opt out of supervisor to run Home Assistant Core on my existing Docker host, I will have to handle my own updates, backups, and add-ons.
Since I already had a backup solution for data used by Docker containers running on my server, I decided to start by running Home Assistant Core directly. After running in this fashion for a week, I've learned a few facts in favor of running Home Assistant Operating System on a physical computer:
- Home Assistant Core updates very frequently, three updates in the first week of playing with it. Thanks to Docker it's no great hardship to pull a new image and restart, but it'd be nice to have automatic rollback in case of failure.
- When browsing the wide selection of Home Assistant integrations, there's usually a little "Add Integration" button that held the promise to automatically set everything up for us. When the thing is an addon that requires running its own Docker container (like the ESPHome dashboard) the promise goes unfulfilled because we'd need the supervisor module for that.
- When managed by the supervisor, addons like ESPHome can be integrated into the Home Assistant user interface. Versus opening up a separate browser tab when running in a Docker container I manage manually. This also means an addon can integrate with Home Assistant permissions so there's no need to set up a separate username and password for access control.
- Some addons like the ESPHome dashboard requires hardware access. In the case of ESPHome, a USB cable is required for flashing initial firmware on an ESP8266/ESP32. Further updates can be done over the network, but that first one needs a cable. Some Docker hosting environments allow routing a physical USB port to the Docker instance, but mine does not.
I could work around these problems so none of them are deal-breakers. But if I like Home Assistant enough to keep it around, I will seriously consider running it on its own physical hardware. Whether that'd be a Raspberry Pi or something else is to be determined.
In the meantime, I will continue running Home Assistant Core in a container. The documentation even gave us a docker-compose.yml
file all ready to go, but I was skeptical about running it as-is.