Add 'Jenkinsfile'
Some checks failed
gitea-lenape/docker-http-proxy/pipeline/head There was a failure building this commit

This commit is contained in:
2025-05-08 01:06:14 +00:00
parent c82f87b19f
commit 1fc8e1cd0b

55
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,55 @@
pipeline {
agent none
options {
disableConcurrentBuilds(abortPrevious: true)
buildDiscarder(logRotator(numToKeepStr: '1'))
}
stages {
stage('docker compose build') {
agent {
label "xochi"
}
steps {
dir('.') {
sh 'docker compose build'
}
}
}
stage('docker compose push') {
agent {
label "xochi"
}
steps {
dir('.') {
sh 'docker compose push'
}
}
}
}}