As said, I'm tying to install Home Assistant Supervised on the CM3588. As Debian is the only supported distro for installing a supervised version, I'd try my luck.
Images used:
- rk3588-sd-debian-bookworm-core-6.1-arm64-20240522.img
- rk3588-sd-debian-bullseye-desktop-6.1-arm64-20240522.img
Every prerequisite runs fine, like installing dependencies, apparmor and Docker CE. Docker initializes fine and the service is running. However, after downloading and installing the HA .deb file, it fails when restarting the docker service.
During install the HA package adds a /etc/docker/daemon.json file (previously a blank file):
After that, the installer tries to restart the docker service, resulting in an error. Running sudo dockerd --debug, I get (summary):
This happens on all instances I tried: Minimal, desktop, bookworm, bullseye etc. Could someone explain what could be wrong and how to correct it, if possible?
Note: Every other docker management system, Like OMV or CasaOS run fine (with a blank /etc/docker/daemon.json)
Images used:
- rk3588-sd-debian-bookworm-core-6.1-arm64-20240522.img
- rk3588-sd-debian-bullseye-desktop-6.1-arm64-20240522.img
Every prerequisite runs fine, like installing dependencies, apparmor and Docker CE. Docker initializes fine and the service is running. However, after downloading and installing the HA .deb file, it fails when restarting the docker service.
During install the HA package adds a /etc/docker/daemon.json file (previously a blank file):
Code: Select all
{
"log-driver": "journald",
"storage-driver": "overlay2",
"ip6tables": true,
"experimental": true,
"log-opts": {
"tag": "{{.Name}}"
}
}
After that, the installer tries to restart the docker service, resulting in an error. Running sudo dockerd --debug, I get (summary):
Code: Select all
{[graphdriver] trying configured driver: overlay2
failed to mount overlay: invalid argument storage-driver=overlay2
failed to start daemon: error initializing graphdriver: driver not supported: overlay2}
This happens on all instances I tried: Minimal, desktop, bookworm, bullseye etc. Could someone explain what could be wrong and how to correct it, if possible?
Note: Every other docker management system, Like OMV or CasaOS run fine (with a blank /etc/docker/daemon.json)