From d92b8d3519f4118081bf8f3ea5e82cf80fff975f Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Wed, 8 Feb 2023 11:41:47 +0100 Subject: Makefile: restore helpful comments --- Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5b9e281..be4e3db 100644 --- a/Makefile +++ b/Makefile @@ -82,12 +82,16 @@ ifndef FORCE endif .PHONY: compose/build -# `docker-compose build` has the same problems as `docker build`. +# `docker-compose build` has week support for multiarch repos (you need to use +# 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 .PHONY: compose/push -# `docker-compose push` has the same problems as `docker push`. +# `docker-compose push` would replace the multiarch repo with a single image by +# default (you'd have to create a manifest and push it instead), so it's only +# here for testing purposes. compose/push: check-push compose/build docker-compose push -- cgit v1.2.3