Jenkinsfile

This commit is contained in:
Vicente Falco 2017-11-09 13:44:06 +01:00
parent 7d5b421ace
commit 83e4a3c873
1 changed files with 1 additions and 2 deletions

3
Jenkinsfile vendored
View File

@ -3,7 +3,6 @@
def branchName = "${env.BRANCH_NAME}"; def branchName = "${env.BRANCH_NAME}";
def branchProduction = "master" def branchProduction = "master"
def branchTest = "test"; def branchTest = "test";
def dockerHost = "${env.DOCKER_HOST}";
env.BRANCH_NAME = branchName; env.BRANCH_NAME = branchName;
env.TAG = "${env.BUILD_NUMBER}"; env.TAG = "${env.BUILD_NUMBER}";
@ -13,7 +12,7 @@ switch (branchName){
env.NODE_ENV = "development"; env.NODE_ENV = "development";
break; break;
case branchProduction: case branchProduction:
dockerHost = "tcp://172.16.255.29:2375"; env.DOCKER_HOST = "tcp://172.16.255.29:2375";
env.NODE_ENV = "production" env.NODE_ENV = "production"
break; break;
} }