This commit is contained in:
Bartosz Kuzma
2023-01-11 08:25:15 +01:00
commit 2e0c84ed60
54 changed files with 9875 additions and 0 deletions

11
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,11 @@
node('master'){
stage('git pull'){
git credentialsId: '7724c11a-2509-4aa3-9862-106aa354c5b8', url: 'ssh://_git@phabricator.release11.com/diffusion/CZOPW/czopw.git'
}
stage('build & deploy'){
sh 'cd Web/ && docker-compose --context gordon up --force-recreate --build -d'
}
}