Deployment with docker/jenkins

This commit is contained in:
Juan Ferrer 2020-01-14 13:30:11 +01:00
parent 4924a9cbbf
commit b6c893da66
5 changed files with 83 additions and 5 deletions

0
.dockerignore Normal file
View File

3
Dockerfile Normal file
View File

@ -0,0 +1,3 @@
FROM httpd:latest
COPY web .

70
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,70 @@
#!/usr/bin/env groovy
pipeline {
agent any
environment {
PROJECT_NAME = 'vn-support'
}
stages {
stage('Checkout') {
steps {
script {
if (!env.GIT_COMMITTER_EMAIL) {
env.COMMITTER_EMAIL = sh(
script: 'git --no-pager show -s --format="%ae"',
returnStdout: true
).trim()
} else {
env.COMMITTER_EMAIL = env.GIT_COMMITTER_EMAIL;
}
}
configFileProvider([
configFile(fileId: "${env.PROJECT_NAME}.groovy",
variable: 'GROOVY_FILE')
]) {
load env.GROOVY_FILE
}
sh 'printenv'
}
}
stage('Build') {
when {
branch 'master'
}
environment {
CREDS = credentials('docker-registry')
}
steps {
sh 'docker login --username $CREDS_USR --password $CREDS_PSW $REGISTRY'
sh 'docker-compose build --parallel'
sh 'docker-compose push'
}
}
stage('Deploy') {
when {
branch 'master'
}
steps {
sh "docker stack deploy --with-registry-auth --compose-file docker-compose.yml ${env.PROJECT_NAME}"
}
}
}
post {
always {
script {
if (!env.COMMITTER_EMAIL) return
try {
mail(
to: env.COMMITTER_EMAIL,
subject: "Pipeline: ${env.JOB_NAME} (${env.BUILD_NUMBER}): ${currentBuild.currentResult}",
body: "Check status at ${env.BUILD_URL}"
)
} catch (e) {
echo e.toString()
}
}
}
}
}

5
deploy
View File

@ -1,5 +0,0 @@
#!/bin/bash
set -e
vn-debuild
vn-deploy root@www1.static root@www2.static

10
docker-compose.yml Normal file
View File

@ -0,0 +1,10 @@
version: '3.7'
services:
web:
image: registry.verdnatura.es/vn-support
build:
context: .
dockerfile: Dockerfile
ports:
- ${PORT:?}:80