I use standard docker container installation:
docker run -d --name homeassistant --privileged --restart=unless-stopped -e TZ=Europe/Prague -v /srv/ha_config:/config --network=host ghcr.io/home-assistant/home-assistant:stable
There is external disk mounted to /srv
.
My steps to install and set up docker to save containers to external disk (I hope I remember these steps correctly):
- Install docker from command line:
opkg install docker
- stop docker:
service dockerd stop
- Edit config
vi /etc/config/dockerd
and updatedata_root
path to external disk:
option data_root '/srv/docker/'
- start docker:
service dockerd start