automated terminal push

This commit is contained in:
2025-05-28 20:31:55 -04:00
parent c3e4f22f30
commit 1e858e7284
9 changed files with 108 additions and 1 deletions

54
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 "huracan"
}
steps {
dir('.') {
sh 'docker compose build'
}
}
}
stage('docker compose push') {
agent {
label "huracan"
}
steps {
dir('.') {
sh 'docker compose push'
}
}
}
}}