aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-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