adding jenkinsfile

This commit is contained in:
Szakalakamaka
2020-08-25 15:08:14 +02:00
parent dcc996c006
commit c98c327207

14
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,14 @@
pipeline{
agent any
stages {
stage("build"){
steps{
docker-compose up -d --build
}
}
}
}