Skip to content

Commit

Permalink
bootBuildImage add root name tages
Browse files Browse the repository at this point in the history
  • Loading branch information
vnobo committed Nov 28, 2023
1 parent d255eec commit dfc39ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions boot/platform/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ configurations {
}

tasks.named("bootBuildImage") {
tags = ["${dockerPrefix}/${project.name}:latest"]
imageName = ("${dockerPrefix}/${project.name}:${project.version}")
tags = ["${dockerPrefix}/${rootProject.name}-${project.name}:latest"]
imageName = ("${dockerPrefix}/${rootProject.name}-${project.name}:${project.version}")
publish = true
pullPolicy = "IF_NOT_PRESENT"
environment = [
Expand Down

0 comments on commit dfc39ed

Please sign in to comment.