automated terminal push
All checks were successful
code.softwareshinobi.com-utilities/docker-provision-verification/pipeline/head This commit looks good

This commit is contained in:
2025-06-07 17:10:19 -04:00
parent 6acc170a01
commit ce24393381
4 changed files with 63 additions and 0 deletions

5
Dockerfile Normal file
View File

@@ -0,0 +1,5 @@
FROM nginx:latest
WORKDIR /usr/share/nginx/html
COPY --chown=www-data:www-data --chmod=755 . .

57
Jenkinsfile vendored Executable file
View File

@@ -0,0 +1,57 @@
pipeline {
agent none
options {
disableConcurrentBuilds(abortPrevious: true)
buildDiscarder(logRotator(numToKeepStr: '1'))
}
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'
}
}
}
}
}

1
index.html Normal file
View File

@@ -0,0 +1 @@
if you reading this it works