From d7d34515c56d10e0b7b5a4bcd6cea5c4d6508177 Mon Sep 17 00:00:00 2001 From: Aliaksandr Valialkin Date: Tue, 20 Dec 2022 12:32:59 -0800 Subject: [PATCH] deployment/docker: do not publish lts releases with the `latest` tag at DockerHub This should prevent from overwriting the real `latest` images published from the latest releases of VictoriaMetrics --- deployment/docker/Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/deployment/docker/Makefile b/deployment/docker/Makefile index 274022d08..e0d7f85b7 100644 --- a/deployment/docker/Makefile +++ b/deployment/docker/Makefile @@ -74,7 +74,6 @@ publish-via-docker: \ --build-arg root_image=$(ROOT_IMAGE) \ --build-arg APP_NAME=$(APP_NAME) \ --tag $(DOCKER_NAMESPACE)/$(APP_NAME):$(PKG_TAG)$(RACE) \ - --tag $(DOCKER_NAMESPACE)/$(APP_NAME):latest$(RACE) \ -o type=image \ -f app/$(APP_NAME)/multiarch/Dockerfile \ --push \