proxy-nginx/deploy-this/start-proxy.jenkinsfile

14 lines
248 B
Plaintext
Executable File

pipeline {
agent any
stages{
stage('start central-nginx') {
steps {
script{
def nxinx_build ="docker compose --file deploy-this/deploy-dc.yml up --detach "
sh(nxinx_build);
}
}
}
}
}