-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
75 lines (69 loc) · 2.26 KB
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
pipeline {
agent any
tools {nodejs "node"}
environment {
DOCKER_IMAGE = 'thunderzeye/csirt-backend'
DOCKER_REGISTRY = 'https://registry.hub.docker.com'
// DOCKER_TAG = "${DOCKER_IMAGE}:${env.BUILD_NUMBER}"
DOCKER_TAG = "${DOCKER_IMAGE}:latest"
DOCKERHUB_CREDENTIALS = 'docker-hub-credentials-id'
}
stages {
stage('Build Docker Image') {
steps {
script {
// Build the Docker image using the Dockerfile in the project root
def dockerImage = docker.build("${DOCKER_TAG}")
// Check if the build was successful before pushing
if (dockerImage != null) {
echo 'Docker build successful'
currentBuild.result = 'SUCCESS'
} else {
echo 'Docker build failed'
currentBuild.result = 'FAILURE'
}
}
}
}
stage('Push Docker Image to Docker Hub') {
steps {
script {
// Push the Docker image to Docker Hub
docker.withRegistry('https://registry.hub.docker.com', 'docker-hub-credentials-id') {
def dockerImage = docker.image("${DOCKER_TAG}")
// Check if the image exists before pushing
if (dockerImage != null) {
dockerImage.push()
echo 'Docker push successful'
} else {
echo 'Docker push failed'
currentBuild.result = 'FAILURE'
}
}
}
}
}
}
post {
always {
echo 'One way or another, I have finished'
cleanWs()
}
success {
script {
echo "I am successful"
}
}
unstable {
echo 'I am unstable :/'
}
failure {
script {
echo "I am a failure"
}
}
changed {
echo 'Things were different before...'
}
}
}