Files
portofino.embanet.online/Jenkinsfile
Your Name cc3e282c6f
All checks were successful
code.softwareshinobi.com-embanet/portofino.embanet.online/pipeline/head This commit looks good
automated push from the terminal
2025-07-01 13:00:04 -04:00

57 lines
676 B
Groovy

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'
}
}
}
}
}