card-jong-be/Jenkinsfile

12 lines
172 B
Plaintext
Raw Normal View History

2024-05-08 13:57:36 +00:00
pipeline {
agent any
stages {
2024-05-08 14:34:07 +00:00
stage("Run & build") {
2024-05-08 13:57:36 +00:00
steps {
sh "docker compose up --build -d"
}
}
}
}