From c6c91dee75724e859ec8d18be4ce95845a2903e6 Mon Sep 17 00:00:00 2001 From: Jeff Wong Date: Thu, 20 Nov 2025 16:19:35 -0800 Subject: [PATCH] FIX: allow overlayfs storage driver new storage driver on by default, per: https://docs.docker.com/engine/storage/drivers/ containerd image store seems to report as overlayfs, so we should allow for this string as well. Ref: https://meta.discourse.org/t/overlayfs-to-overlay2-failed-on-fresh-installation-storage-driver/389126 --- launcher | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher b/launcher index 7848ffcf2..a6c783d50 100755 --- a/launcher +++ b/launcher @@ -208,7 +208,7 @@ check_prereqs() { fi # 2. running an approved storage driver? - if ! $docker_path info 2> /dev/null | grep -E -q 'Storage Driver: (btrfs|aufs|zfs|overlay2)$'; then + if ! $docker_path info 2> /dev/null | grep -E -q 'Storage Driver: (btrfs|aufs|zfs|overlay2|overlayfs)$'; then echo "Your Docker installation is not using a supported storage driver. If we were to proceed you may have a broken install." echo "overlay2 is the recommended storage driver, although zfs and aufs may work as well." echo "Other storage drivers are known to be problematic."