automated push from the terminal

This commit is contained in:
2025-06-13 15:43:24 -04:00
parent 2ddbf31e24
commit 5bae9900e8
70 changed files with 1072 additions and 724 deletions

54
legacy/Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,54 @@
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'
}
}
}
}}