From b0b63577018397f81b25489b9df3ddd3dc62b4da Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Mon, 18 Nov 2024 13:14:30 +0100 Subject: [PATCH] Makefile: don't automatically inherit graph-driver from host This was originally added in 54aa3a3c210cd16b687f0e6b6356888d90215752, when there was still a wide variety of storage-drivers used, and some hosts would be running aufs of devicemapper. Let's return to make this an explicit override if needed. Signed-off-by: Sebastiaan van Stijn --- Makefile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Makefile b/Makefile index 42a655437e..1bc2453c12 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,6 @@ 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 -f '{{ .Driver }}' 2>&1)) -export DOCKER_GRAPHDRIVER - DOCKER_GITCOMMIT := $(shell git rev-parse HEAD) export DOCKER_GITCOMMIT