-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathJenkinsfile
More file actions
executable file
·40 lines (28 loc) · 1.27 KB
/
Jenkinsfile
File metadata and controls
executable file
·40 lines (28 loc) · 1.27 KB
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
node{
stage('SCM Checkout'){
git credentialsId: 'githubpassword', url: 'https://github.com/blrdevopstraining/java-web-app-docker.git'
}
stage(" Maven Clean Package"){
def mavenHome = tool name: "maven-3.9.0", type: "maven"
def mavenCMD = "${mavenHome}/bin/mvn"
sh "${mavenCMD} clean package"
}
stage('Build Docker Image'){
sh 'docker build -t blrdevopstraining/java-web-app .'
}
stage('Push Docker Image'){
withCredentials([string(credentialsId: 'Docker_Hub_Pwd', variable: 'Docker_Hub_Pwd')]) {
sh "docker login -u blrdevopstraining -p ${Docker_Hub_Pwd}"
}
sh 'docker push blrdevopstraining/java-web-app'
}
stage('Run Docker Image In Dev Server'){
def dockerRun = ' docker run -d -p 8080:8080 --name java-web-app blrdevopstraining/java-web-app'
sshagent(['dockerssh']) {
sh 'ssh -o StrictHostKeyChecking=no [email protected] docker stop java-web-app || true'
sh 'ssh [email protected] docker rm java-web-app || true'
sh 'ssh [email protected] docker rmi -f $(docker images -q) || true'
sh "ssh [email protected] ${dockerRun}"
}
}
}