Docker on Turris OS 6

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):

  1. Install docker from command line: opkg install docker
  2. stop docker: service dockerd stop
  3. Edit config vi /etc/config/dockerd and update data_root path to external disk:
    option data_root '/srv/docker/'
  4. start docker: service dockerd start
3 Likes