forked from bc0071/mithun_spring-boot-mongo-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
JenkinsfileDockerSwarm
36 lines (30 loc) · 1.29 KB
/
JenkinsfileDockerSwarm
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
node{
stage("Git CheckOut"){
git url: 'https://github.com/MithunTechnologiesDevOps/spring-boot-mongo-docker.git',branch: 'master'
}
stage(" Maven Clean Package"){
def mavenHome = tool name: "Maven-3.6.1", type: "maven"
def mavenCMD = "${mavenHome}/bin/mvn"
sh "${mavenCMD} clean package"
}
stage("Build Dokcer Image") {
sh "docker build -t dockerhandson/spring-boot-mongo ."
}
stage("Docker Push"){
withCredentials([string(credentialsId: 'Docker_Hub_Pwd', variable: 'Docker_Hub_Pwd')]) {
sh "docker login -u dockerhandson -p ${Docker_Hub_Pwd}"
}
sh "docker push dockerhandson/spring-boot-mongo"
}
// Remove local image in Jenkins Server
stage("Remove Local Image"){
sh "docker rmi -f dockerhandson/spring-boot-mongo"
}
stage("Deploy to docker swarm cluster"){
sshagent(['Docker_Swarm_Manager_Dev']) {
sh 'scp -o StrictHostKeyChecking=no docker-compose.yml [email protected]:'
//sh 'ssh -o StrictHostKeyChecking=no [email protected] docker stack rm springboot'
sh 'ssh -o StrictHostKeyChecking=no [email protected] docker stack deploy --prune --compose-file docker-compose.yml springboot'
}
}
}