diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-02-25 22:24:10 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-02-25 22:24:10 +0100 |
commit | 85c891c2ce32ec24047ba99315f8b29ac8daf199 (patch) | |
tree | 990c2b702ff58ea4d409df509e1b324695ff3a3e /Makefile | |
parent | shorter platform names (diff) | |
download | fr24feed-85c891c2ce32ec24047ba99315f8b29ac8daf199.tar.gz fr24feed-85c891c2ce32ec24047ba99315f8b29ac8daf199.zip |
use `--progress plain` with Docker builds
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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 \ '$*/' |