aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-02-25 22:24:10 +0100
committerEgor Tensin <Egor.Tensin@gmail.com>2023-02-25 22:24:10 +0100
commit85c891c2ce32ec24047ba99315f8b29ac8daf199 (patch)
tree990c2b702ff58ea4d409df509e1b324695ff3a3e
parentshorter platform names (diff)
downloadfr24feed-85c891c2ce32ec24047ba99315f8b29ac8daf199.tar.gz
fr24feed-85c891c2ce32ec24047ba99315f8b29ac8daf199.zip
use `--progress plain` with Docker builds
-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 \
'$*/'