update docker configs

This commit is contained in:
CaiHQ
2022-05-05 13:28:26 +08:00
parent 310b0f2913
commit 1a79df1478
5 changed files with 101 additions and 19 deletions

View File

@@ -58,6 +58,7 @@ task copyScript(type: Copy) {
include 'ncstop.sh'
include 'ncconfig.json.template'
include 'updateCluster.sh'
include 'log4j2.properties'
}
into "./build/output"
println("copyScript done !")
@@ -101,7 +102,7 @@ task copyWebContent(type: Copy) {
task buildBDServerClusterZip(type: Zip, dependsOn: ["copyWebContent", "copyScript", "copyJar"]) {
from './build/output/'
duplicatesStrategy = DuplicatesStrategy.INCLUDE
archiveFileName = 'bdserver-cluster.zip'
archiveFileName = 'bdcluster-all.zip'
destinationDirectory = file('build/')
}