From c19ce98943ba2da380f92b21f3b4daa3eda6a6b0 Mon Sep 17 00:00:00 2001 From: RouxAntoine Date: Tue, 11 Oct 2022 20:12:59 +0200 Subject: [PATCH] fix: Makefile --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 71687a1..37a129d 100644 --- a/Makefile +++ b/Makefile @@ -1,15 +1,18 @@ .PHONY: imageHaproxy +REGISTRY_IP=docker.registry # linux/arm/v7 # linux/arm/v6 # linux/arm64 # linux/amd64 PLATFORM=linux/arm64,linux/amd64 +#VERBOSITY=info +VERBOSITY=debug ## build imageHaproxy: - $(shell docker-multi-arch-builder build -n haproxy-k8s --platforms $(PLATFORM)) + $(shell docker-multi-arch-builder build -n haproxy-k8s --platforms $(PLATFORM) -v $(VERBOSITY)) ## management