From 3cd45213dedd8d9634d4a40e6df0e440dbb0268c Mon Sep 17 00:00:00 2001 From: SammyOina Date: Thu, 28 Sep 2023 16:51:22 +0300 Subject: [PATCH] Fix Docker image tag in Makefile The Docker image tag in the Makefile was updated to use lowercase "mainflux" instead of "Mainflux". This ensures consistency with the naming convention used for the Docker images. Signed-off-by: SammyOina --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5448bbb..a33efc5 100644 --- a/Makefile +++ b/Makefile @@ -37,7 +37,7 @@ define make_docker --build-arg VERSION=$(VERSION) \ --build-arg COMMIT=$(COMMIT) \ --build-arg TIME=$(TIME) \ - --tag=Mainflux/$(svc) \ + --tag=mainflux/$(svc) \ -f docker/Dockerfile . endef