diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-03-01 00:44:27 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-03-01 01:43:41 +0300 |
commit | 18f6b342764fb32dc91c539c3b507091f285d906 (patch) | |
tree | d8d1686c193cc7e810090e18cd4d92b79f74adcc | |
parent | Travis: switch to Boost 1.67 (diff) | |
download | math-server-18f6b342764fb32dc91c539c3b507091f285d906.tar.gz math-server-18f6b342764fb32dc91c539c3b507091f285d906.zip |
Makefile: code style
Diffstat (limited to '')
-rw-r--r-- | Makefile | 31 |
1 files changed, 23 insertions, 8 deletions
@@ -7,7 +7,7 @@ SHELL := bash .DEFAULT_GOAL := all .SUFFIXES: -PROJECT := math_server +PROJECT := math-server # Enable buildx support: export DOCKER_CLI_EXPERIMENTAL := enabled # Target platforms (used by buildx): @@ -15,42 +15,54 @@ platforms := linux/amd64,linux/armhf # Docker Hub credentials: DOCKER_USERNAME := egortensin +.PHONY: all all: build +.PHONY: DO DO: +.PHONY: login login: ifndef DOCKER_PASSWORD $(error Please define DOCKER_PASSWORD) endif @echo "$(DOCKER_PASSWORD)" | docker login --username "$(DOCKER_USERNAME)" --password-stdin +.PHONY: build # Build natively by default. build: compose/build +.PHONY: clean clean: docker system prune --all --force --volumes +.PHONY: push # Push multi-arch images by default. push: buildx/push +.PHONY: pull pull: docker-compose pull +.PHONY: up up: docker-compose up -d server +.PHONY: client client: docker-compose run --rm client +.PHONY: down down: docker-compose down --volumes +.PHONY: check-build check-build: ifndef FORCE $(warning Going to build natively; consider `docker buildx build` instead) endif +.PHONY: check-push check-push: ifndef FORCE $(error Please use `docker buildx build --push` instead) @@ -62,6 +74,7 @@ endif docker/build/%: DO check-build docker build -f "$*/Dockerfile" -t "$(DOCKER_USERNAME)/math-$*" . +.PHONY: docker/build docker/build: docker/build/client docker/build/server # `docker push` would replace the multiarch repo with a single image by default @@ -70,40 +83,42 @@ docker/build: docker/build/client docker/build/server docker/push/%: DO check-push docker/build/% docker push "$(DOCKER_USERNAME)/math-$*" +.PHONY: docker/push docker/push: check-push docker/push/client docker/push/server +.PHONY: compose/build # `docker-compose build` has the same problems as `docker build`. compose/build: check-build docker-compose build +.PHONY: compose/push # `docker-compose push` has the same problems as `docker push`. compose/push: check-push compose/build docker-compose push # The simple way to build multiarch repos is `docker buildx`. -# Re-register binfmt_misc formats with the F flag (required i.e. on Bionic): +.PHONY: fix-binfmt +# Re-register binfmt_misc formats with the F flag (required e.g. on Bionic): fix-binfmt: docker run --rm --privileged docker/binfmt:66f9012c56a8316f9244ffd7622d7c21c1f6f28d +.PHONY: buildx/create buildx/create: fix-binfmt docker buildx create --use --name "$(PROJECT)_builder" +.PHONY: buildx/rm buildx/rm: docker buildx rm "$(PROJECT)_builder" buildx/build/%: DO docker buildx build -f "$*/Dockerfile" -t "$(DOCKER_USERNAME)/math-$*" --platform "$(platforms)" --progress plain . +.PHONY: buildx/build buildx/build: buildx/build/client buildx/build/server buildx/push/%: DO docker buildx build -f "$*/Dockerfile" -t "$(DOCKER_USERNAME)/math-$*" --platform "$(platforms)" --progress plain --push . +.PHONY: buildx/push buildx/push: buildx/push/client buildx/push/server - -.PHONY: all login build clean push pull up client down -.PHONY: check-build check-push -.PHONY: docker/build docker/push -.PHONY: compose/build compose/push -.PHONY: fix-binfmt buildx/create buildx/rm buildx/build buildx/push |