Deploy fixes
This commit is contained in:
parent
e016ad4d93
commit
e5f4e8a01a
|
@ -17,10 +17,6 @@ node {
|
|||
}
|
||||
stage ('Docker deployment') {
|
||||
withCredentials([dockerCert(credentialsId: 'docker', variable: 'DOCKER_CERT_PATH')]) {
|
||||
if (env.BRANCH_NAME != 'master') {
|
||||
env.COMPOSE_PROJECT_NAME = "${env.BRANCH_NAME}-${env.JOB_NAME}"
|
||||
}
|
||||
|
||||
switch (env.BRANCH_NAME) {
|
||||
case 'master':
|
||||
env.NODE_ENV = 'production'
|
||||
|
@ -42,10 +38,14 @@ node {
|
|||
break;
|
||||
}
|
||||
|
||||
env.COMPOSE_PROJECT_NAME = env.JOB_NAME
|
||||
env.COMPOSE_PROJECT_NAME = env.JOB_BASE_NAME
|
||||
env.DOCKER_TLS_VERIFY = 1
|
||||
env.TAG = env.NODE_ENV
|
||||
|
||||
if (env.BRANCH_NAME != 'master') {
|
||||
env.COMPOSE_PROJECT_NAME = "${env.BRANCH_NAME}-${env.COMPOSE_PROJECT_NAME}"
|
||||
}
|
||||
|
||||
env.DOCKER_HOST = 'tcp://vch1.verdnatura.es:2376';
|
||||
sh "docker-compose up --build -d"
|
||||
|
||||
|
@ -53,12 +53,12 @@ node {
|
|||
sh "docker-compose up --build -d"
|
||||
}
|
||||
}
|
||||
}
|
||||
post {
|
||||
always {
|
||||
mail to: 'salix@verdnatura.es', subject: 'Pipeline', "Pipeline success: ${env.JOB_NAME}"
|
||||
}
|
||||
failure {
|
||||
mail to: 'salix@verdnatura.es', subject: 'Pipeline', "Pipeline failed: ${env.JOB_NAME}"
|
||||
post {
|
||||
always {
|
||||
mail to: 'salix@verdnatura.es', subject: 'Pipeline', "Pipeline success: ${env.JOB_NAME}"
|
||||
}
|
||||
failure {
|
||||
mail to: 'salix@verdnatura.es', subject: 'Pipeline', "Pipeline failed: ${env.JOB_NAME}"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue