fix(build): 修正数据库端口配置
All checks were successful
CI/CD Pipeline / build-and-deploy (push) Successful in 2m17s
All checks were successful
CI/CD Pipeline / build-and-deploy (push) Successful in 2m17s
- 将 llmx-database 的端口从 9052 修改为 5432 - 更新了两个镜像构建配置中的数据库连接参数
This commit is contained in:
parent
6794d1a0ef
commit
6e2ffaf398
@ -145,7 +145,7 @@ subprojects {
|
|||||||
paths = listOf(File(rootProject.projectDir, "scripts").absolutePath)
|
paths = listOf(File(rootProject.projectDir, "scripts").absolutePath)
|
||||||
entrypoint = listOf(
|
entrypoint = listOf(
|
||||||
"/bin/sh", "-c",
|
"/bin/sh", "-c",
|
||||||
"/entrypoint.sh -d llmx-nacos:8848,llmx-database:9052 -c " +
|
"/entrypoint.sh -d llmx-nacos:8848,llmx-database:5432 -c " +
|
||||||
"'java -cp $( cat /app/jib-classpath-file ) $( cat /app/jib-main-class-file )'"
|
"'java -cp $( cat /app/jib-classpath-file ) $( cat /app/jib-main-class-file )'"
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
@ -157,7 +157,7 @@ subprojects {
|
|||||||
paths = listOf(File(rootProject.projectDir, "scripts").absolutePath)
|
paths = listOf(File(rootProject.projectDir, "scripts").absolutePath)
|
||||||
entrypoint = listOf(
|
entrypoint = listOf(
|
||||||
"/bin/sh", "-c",
|
"/bin/sh", "-c",
|
||||||
"/entrypoint.sh -d llmx-nacos:8848,llmx-database:9052 -c " +
|
"/entrypoint.sh -d llmx-nacos:8848,llmx-database:5432 -c " +
|
||||||
"'java -cp $( cat /app/jib-classpath-file ) $( cat /app/jib-main-class-file )'"
|
"'java -cp $( cat /app/jib-classpath-file ) $( cat /app/jib-main-class-file )'"
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user