docs added and reskinning

This commit is contained in:
Software Shinobi
2026-02-19 00:45:05 -05:00
parent 7e93b14012
commit d791b80ef8
23 changed files with 679 additions and 27 deletions

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