From e1517d1e0286131fe11e50559f74bbc9bdadf294 Mon Sep 17 00:00:00 2001 From: Ayaz Salikhov Date: Wed, 24 Feb 2021 20:49:00 +0300 Subject: [PATCH] Push all tags in docker push command --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c99904a895..829a0b0a0f 100644 --- a/Makefile +++ b/Makefile @@ -154,7 +154,7 @@ pull/%: ## pull a jupyter image push/%: DARGS?= push/%: ## push all tags for a jupyter image - docker push $(DARGS) $(OWNER)/$(notdir $@) + docker push --all-tags $(DARGS) $(OWNER)/$(notdir $@) push-all: $(foreach I,$(ALL_IMAGES),push/$(I) ) ## push all tagged images