From 292d6bb4e1ffe5a49e4670a44a7ed7472873fb1d Mon Sep 17 00:00:00 2001 From: Arkadiusz Hiler Date: Thu, 20 Mar 2025 11:05:14 +0200 Subject: [PATCH] configure.sh: Detect non-silenced podman-docker. --- configure.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure.sh b/configure.sh index 41d29a62..15ee9d24 100755 --- a/configure.sh +++ b/configure.sh @@ -64,6 +64,9 @@ check_container_engine() { if [[ $inner_uid == *"Permission denied"* ]]; then err "The container cannot access files. Are you using SELinux?" die "Please read README.md and check your $1 setup works." + elif [[ $inner_uid == *"Emulate Docker CLI"* ]]; then + err "Detected podman-docker in use without the warning being silenced." + die "Please create /etc/containers/nodocker or specify --container-engine=podman." elif [ "$inner_uid" -eq 0 ]; then # namespace maps the user as root or the build is performed as host's root ROOTLESS_CONTAINER=1