diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-02-08 11:41:47 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-02-08 11:41:47 +0100 |
commit | d92b8d3519f4118081bf8f3ea5e82cf80fff975f (patch) | |
tree | 4f9517ec728df33a19e755a03f68b61b31f621c3 /Makefile | |
parent | Makefile: remove docker/build recipe (diff) | |
download | fr24feed-d92b8d3519f4118081bf8f3ea5e82cf80fff975f.tar.gz fr24feed-d92b8d3519f4118081bf8f3ea5e82cf80fff975f.zip |
Makefile: restore helpful comments
Diffstat (limited to '')
-rw-r--r-- | Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -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 |