Skip to content

Commit

Permalink
✨ fix(build.gradle): Correct Docker image name format for local dep…
Browse files Browse the repository at this point in the history
…loyment.
  • Loading branch information
vnobo committed Dec 17, 2024
1 parent b44290b commit c783fdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ configure(subprojects - project(":boot")) { project ->

tasks.named("bootBuildImage") {
createdDate = "now"
imageName = "-localhost:5000/${rootProject.name}-${project.name}:latest"
imageName = "localhost:5000/${rootProject.name}-${project.name}:latest"
environment = [
"BPE_DELIM_JAVA_TOOL_OPTIONS" : " ",
"BPE_APPEND_JAVA_TOOL_OPTIONS": "-Dfile.encoding=UTF-8 " +
Expand Down

0 comments on commit c783fdd

Please sign in to comment.