Files
databases.softwareshinobi.com/Jenkinsfile

57 lines
676 B
Plaintext
Raw Permalink Normal View History

2025-03-14 16:46:19 -04:00
pipeline {
agent none
options {
2025-05-28 21:47:10 -04:00
2025-03-14 16:46:19 -04:00
disableConcurrentBuilds(abortPrevious: true)
2025-05-28 21:47:10 -04:00
buildDiscarder(logRotator(numToKeepStr: '10'))
2025-03-14 16:46:19 -04:00
}
2025-05-28 21:47:10 -04:00
2025-03-14 16:46:19 -04:00
stages {
2025-05-28 21:47:10 -04:00
2025-03-14 16:46:19 -04:00
stage('docker compose build') {
2025-05-28 21:47:10 -04:00
2025-03-14 16:46:19 -04:00
agent {
2025-05-28 21:47:10 -04:00
label "sian"
2025-03-14 16:46:19 -04:00
}
steps {
dir('.') {
sh 'docker compose build'
2025-05-28 21:47:10 -04:00
}
2025-03-14 16:46:19 -04:00
}
2025-05-28 21:47:10 -04:00
}
2025-03-14 16:46:19 -04:00
stage('docker compose push') {
agent {
2025-05-28 21:47:10 -04:00
label "sian"
2025-03-14 16:46:19 -04:00
}
steps {
dir('.') {
sh 'docker compose push'
2025-05-28 21:47:10 -04:00
}
2025-03-14 16:46:19 -04:00
}
2025-05-28 21:47:10 -04:00
}
2025-03-14 16:46:19 -04:00
2025-06-05 19:18:37 -04:00
}
}