Skip to content

Commit acb7a3b

Browse files
FIX: allow overlayfs storage driver (#1014)
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
1 parent c084707 commit acb7a3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

launcher

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ check_prereqs() {
208208
fi
209209

210210
# 2. running an approved storage driver?
211-
if ! $docker_path info 2> /dev/null | grep -E -q 'Storage Driver: (btrfs|aufs|zfs|overlay2)$'; then
211+
if ! $docker_path info 2> /dev/null | grep -E -q 'Storage Driver: (btrfs|aufs|zfs|overlay2|overlayfs)$'; then
212212
echo "Your Docker installation is not using a supported storage driver. If we were to proceed you may have a broken install."
213213
echo "overlay2 is the recommended storage driver, although zfs and aufs may work as well."
214214
echo "Other storage drivers are known to be problematic."

0 commit comments

Comments
 (0)