first push
All checks were successful
code.softwareshinobi.com-embanet/essenza.embanet.online/pipeline/head This commit looks good

This commit is contained in:
Your Name
2025-07-01 12:49:39 -04:00
parent f3b66d42a1
commit 411b26f131

56
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,56 @@
pipeline {
agent none
options {
disableConcurrentBuilds(abortPrevious: true)
buildDiscarder(logRotator(numToKeepStr: '10'))
}
stages {
stage('docker compose build') {
agent {
label "sian"
}
steps {
dir('.') {
sh 'docker compose build'
}
}
}
stage('docker compose push') {
agent {
label "sian"
}
steps {
dir('.') {
sh 'docker compose push'
}
}
}
}
}