From 85c891c2ce32ec24047ba99315f8b29ac8daf199 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sat, 25 Feb 2023 22:24:10 +0100 Subject: use `--progress plain` with Docker builds --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4ea9752..c56ea17 100644 --- a/Makefile +++ b/Makefile @@ -87,7 +87,7 @@ endif # multiple Dockerfile's, create a manifest manually, etc.), so it's only here # for testing purposes, and native builds. compose/build: check-build - docker-compose build + docker-compose build --progress plain .PHONY: compose/push # `docker-compose push` would replace the multiarch repo with a single image by @@ -108,6 +108,7 @@ buildx/build/%: DO docker buildx build \ -t '$(call escape,$(DOCKER_USERNAME))/$*' \ --platform '$(call escape,$(PLATFORMS))' \ + --progress plain \ '$*/' .PHONY: buildx/build @@ -117,6 +118,7 @@ buildx/push/%: DO docker buildx build \ -t '$(call escape,$(DOCKER_USERNAME))/$*' \ --platform '$(call escape,$(PLATFORMS))' \ + --progress plain \ --push \ '$*/' -- cgit v1.2.3