16 lines
355 B
Plaintext
Executable File
16 lines
355 B
Plaintext
Executable File
pipeline {
|
|
agent any
|
|
|
|
stages{
|
|
stage('start proxy-nginx') {
|
|
steps {
|
|
script{
|
|
def nxinx_build ="docker compose --file deploy-this/deploy-dc.yml up --detach "
|
|
sh(nxinx_build);
|
|
sh "rm -f /_sd/nginx/*.conf"
|
|
sh "cp nginx-config/${PROTOCOL}/*.conf /_sd/nginx"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |