automated push from the terminal
All checks were successful
code.softwareshinobi.com-softwareshinobi/resume.softwareshinobi.com/pipeline/head This commit looks good

This commit is contained in:
2025-06-15 16:27:05 -04:00
parent 55e96407b6
commit 7d306fbc82
9 changed files with 123 additions and 71 deletions

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