aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
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 \
'$*/'