automated terminal push
All checks were successful
code.softwareshinobi.com-shinobi/newsletter.softwareshinobi.com/pipeline/head This commit looks good

This commit is contained in:
2025-06-04 10:58:11 -04:00
parent 4a6c7b1331
commit 3a2e0c62a2
9 changed files with 123 additions and 2 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'
}
}
}
}
}