Install Supervised/Supervisor on Raspberry Pi4 with Docker installation

Hi @rmenes
This video showed me how to install HA Supervised in a docker container on a Raspberry Pi 4
How to Install Home Assistant Supervised - OFFICIAL WAY

The steps where as follows;
Update your OS with the following two commands:

sudo apt-get update && sudo apt-get upgrade

Install needed Home Assistant Supervised dependencies
sudo apt-get install network-manager apparmor-utils jq -y

Reboot
sudo reboot

Get the official docker script for Raspberry Pi
curl -fsSL https://get.docker.com​ -o get-docker.sh

Start the script
sudo sh get-docker.sh

Give Pi user needed permissions
sudo usermod -aG docker pi

Get the HA installer script
sudo curl -Lo installer.sh https://raw.githubusercontent.com/home-assistant/supervised-installer/master/installer.sh

Start the HA installer script change the machine with any of these


sudo bash installer.sh --machine raspberrypi4
5 Likes