From ebb9fade23532aac753870c1e007bd804c33b45f Mon Sep 17 00:00:00 2001 From: Djordje Lukic Date: Wed, 26 Jul 2023 18:11:11 +0200 Subject: [PATCH] makefile: use info -f to get the current storage driver Signed-off-by: Djordje Lukic --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7e1740f7de..50edcd8eba 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ DOCKER ?= docker BUILDX ?= $(DOCKER) buildx # set the graph driver as the current graphdriver if not set -DOCKER_GRAPHDRIVER := $(if $(DOCKER_GRAPHDRIVER),$(DOCKER_GRAPHDRIVER),$(shell docker info 2>&1 | grep "Storage Driver" | sed 's/.*: //')) +DOCKER_GRAPHDRIVER := $(if $(DOCKER_GRAPHDRIVER),$(DOCKER_GRAPHDRIVER),$(shell docker info -f {{ .Driver }} 2>&1)) export DOCKER_GRAPHDRIVER DOCKER_GITCOMMIT := $(shell git rev-parse HEAD)