From d2467219a1f53361f370c3d7058bbe7994bb2821 Mon Sep 17 00:00:00 2001 From: Stephan Schnabel Date: Fri, 20 Jun 2025 21:54:03 +0200 Subject: [PATCH] Enable buildkit per default --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 38bddcd..436948a 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -7,7 +7,7 @@ set -e; ## build command to execute ## -COMMAND="dockerd --rootless --host=0.0.0.0:${DOCKERD_PORT:-2375} --tls=false --data-root=/home/docker --storage-driver=fuse-overlayfs --shutdown-timeout=${DOCKERD_SHUTDOWN_TIMEOUT:-0}" +COMMAND="dockerd --rootless --host=0.0.0.0:${DOCKERD_PORT:-2375} --tls=false --data-root=/home/docker --storage-driver=fuse-overlayfs --shutdown-timeout=${DOCKERD_SHUTDOWN_TIMEOUT:-0} --feature=buildkit=true --feature=containerd-snapshotter=true" if [[ -n "$DOCKERD_LOG_LEVEL" ]]; then COMMAND+=" --log-level=$DOCKERD_LOG_LEVEL" fi