Skip to content

Commit

Permalink
renamed 'dockerImagePath' property to 'dockerOrganisation'
Browse files Browse the repository at this point in the history
  • Loading branch information
Denis Zhdanov committed May 22, 2024
1 parent e47c680 commit 8195407
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/resources/include/application.gradle
Original file line number Diff line number Diff line change
@@ -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 {
Expand Down

0 comments on commit 8195407

Please sign in to comment.