From eb36d45c35225e8e1485e622604d867ad15efb3d Mon Sep 17 00:00:00 2001 From: Adphi Date: Tue, 23 Aug 2022 13:21:18 +0200 Subject: [PATCH] Makefile: fix docker-push Signed-off-by: Adphi --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9ca4fcb..e465764 100644 --- a/Makefile +++ b/Makefile @@ -42,7 +42,7 @@ DOCKER_IMAGE := linkacloud/d2vm docker: docker-build docker-push docker-push: - @docker image push $(DOCKER_IMAGE) + @docker image push $(DOCKER_IMAGE):$(VERSION) ifneq ($(TAG),) @docker image push $(DOCKER_IMAGE):latest endif