From 819540730570559916dc2f0bd3b8b2c361441ba5 Mon Sep 17 00:00:00 2001 From: Denis Zhdanov Date: Wed, 22 May 2024 18:57:45 +0800 Subject: [PATCH] renamed 'dockerImagePath' property to 'dockerOrganisation' --- src/main/resources/include/application.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/include/application.gradle b/src/main/resources/include/application.gradle index 7fc4ff7..4d79efd 100644 --- a/src/main/resources/include/application.gradle +++ b/src/main/resources/include/application.gradle @@ -1,9 +1,9 @@ -def dockerImagePath = project.ext.getMandatoryProperty("dockerImagePath") +def dockerOrganisation = project.ext.getMandatoryProperty("dockerOrganisation") def dockerLogin = project.ext.getMandatoryProperty("dockerLogin") def dockerPassword = project.ext.getMandatoryProperty("dockerPassword") bootBuildImage { - imageName = "${dockerImagePath}/${project.name}:${project.version}" + imageName = "${dockerOrganisation}/${project.name}:${project.version}" publish = true docker { publishRegistry {