automated terminal push
All checks were successful
code.softwareshinobi.com-utilities/docker-provision-verification/pipeline/head This commit looks good
All checks were successful
code.softwareshinobi.com-utilities/docker-provision-verification/pipeline/head This commit looks good
This commit is contained in:
5
Dockerfile
Normal file
5
Dockerfile
Normal 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
57
Jenkinsfile
vendored
Executable 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
1
index.html
Normal file
@@ -0,0 +1 @@
|
||||
if you reading this it works
|
||||
Reference in New Issue
Block a user