aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-02-08 11:41:47 +0100
committerEgor Tensin <Egor.Tensin@gmail.com>2023-02-08 11:41:47 +0100
commitd92b8d3519f4118081bf8f3ea5e82cf80fff975f (patch)
tree4f9517ec728df33a19e755a03f68b61b31f621c3
parentMakefile: remove docker/build recipe (diff)
downloadfr24feed-d92b8d3519f4118081bf8f3ea5e82cf80fff975f.tar.gz
fr24feed-d92b8d3519f4118081bf8f3ea5e82cf80fff975f.zip
Makefile: restore helpful comments
-rw-r--r--Makefile8
1 files 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