For those wanting to try clickable with the new docker snap, or wanting to build other images on your devices, I noticed a serious performance hit in creating clickable images with the new Docker 29.0.0 which is due to the containerd-snapshotter feature. You can disable it easily though, restoring snapshot creation to a previous codepath. You'll just have to edit your /var/snap/docker/current/config/daemon.json configuration:
$ cat /var/snap/docker/current/config/daemon.json
{
"log-level": "error",
"features": {
"containerd-snapshotter": false
}
}
Make sure to restart your Docker daemon afterwards: sudo snap restart docker