-
Notifications
You must be signed in to change notification settings - Fork 1
/
Jenkinsfile
64 lines (62 loc) · 1.44 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
pipeline {
agent any
stages {
stage('Build result') {
steps {
sh """
cd result
docker build -t docker-registry.local.com:5000/votingapp_result .
cd ..
"""
}
}
stage('Build vote') {
steps {
sh """
cd vote
docker build -t docker-registry.local.com:5000/votingapp_vote .
cd ..
"""
}
}
stage('Build worker') {
steps {
sh """
cd worker
docker build -t docker-registry.local.com:5000/votingapp_worker .
cd ..
"""
}
}
stage('Push result image') {
when {
branch 'master'
}
steps {
withDockerRegistry(credentialsId: 'mydockeprivrcred', url: 'http://docker-registry.local.com:5000') {
sh 'docker push docker-registry.local.com:5000/votingapp_result'
}
}
}
stage('Push vote image') {
when {
branch 'master'
}
steps {
withDockerRegistry(credentialsId: 'mydockeprivrcred', url: 'http://docker-registry.local.com:5000') {
sh 'docker push docker-registry.local.com:5000/votingapp_vote'
}
}
}
stage('Push worker image') {
when {
branch 'master'
}
steps {
withDockerRegistry(credentialsId: 'mydockeprivrcred', url: 'http://docker-registry.local.com:5000') {
sh 'docker push docker-registry.local.com:5000/votingapp_worker'
}
}
}
}
}