card-jong-be/Jenkinsfile

12 lines
172 B
Groovy

pipeline {
agent any
stages {
stage("Run & build") {
steps {
sh "docker compose up --build -d"
}
}
}
}