diff --git a/Makefile b/Makefile index cd3204fb224582d53e2e44a3d1b0be23431a792d..f631376390ad9bc57208cfc5cc94c36b6fd2e79f 100644 --- a/Makefile +++ b/Makefile @@ -22,9 +22,18 @@ build_arm32v6: Dockerfile .PHONY: push push: push_x86 push_arm64v8 push_arm32v6 + +.PHONY: push_x86 +push_x86: build_x86 docker push $(NAME):$(QUASSEL_VERSION) docker push $(NAME):latest + +.PHONY: push_arm64v8 +push_arm64v8: build_arm64v8 docker push $(NAME):$(QUASSEL_VERSION)-arm64v8 docker push $(NAME):arm64v8 + +.PHONY: push_arm32v6 +push_arm32v6: build_arm32v6 docker push $(NAME):$(QUASSEL_VERSION)-arm32v6 docker push $(NAME):arm32v6