From 7899cb4d33073d6d2252afcf63f3eccfca1e5102 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20Fernando=20S=C3=A1nchez?= Date: Wed, 1 Mar 2017 17:59:35 +0100 Subject: [PATCH] Fixed docker upload Doing docker push without a tag makes the client upload **ALL** the images it has for that repo. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fc24281..f723582 100644 --- a/Makefile +++ b/Makefile @@ -95,7 +95,7 @@ run: run-$(PYMAIN) push-latest: build-$(PYMAIN) docker tag '$(IMAGEWTAG)-python$(PYMAIN)' '$(IMAGEWTAG)' docker tag '$(IMAGEWTAG)-python$(PYMAIN)' '$(IMAGENAME)' - docker push '$(IMAGENAME)' + docker push '$(IMAGENAME):latest' docker push '$(IMAGEWTAG)' push-%: build-%