10 lines
337 B
Groovy
10 lines
337 B
Groovy
node('master'){
|
|
stage('git') {
|
|
git branch: 'developer', credentialsId: '4b557b80-6257-46a3-9072-bb07ba228cff', url: 'ssh://_git@phabricator.release11.com/source/mockedservices.git'
|
|
}
|
|
stage('deploy'){
|
|
sh 'docker-compose --context gordon down'
|
|
sh 'docker-compose --context gordon up --build -d'
|
|
}
|
|
}
|