forked from mss-batch-16/java-web-app-docker
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathJenkinsfile
More file actions
executable file
·39 lines (27 loc) · 1.12 KB
/
Jenkinsfile
File metadata and controls
executable file
·39 lines (27 loc) · 1.12 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
node{
stage('SCM Checkout'){
git url: 'https://github.com/MithunTechnologiesDevOps/java-web-app-docker.git',branch: 'master'
}
stage(" Maven Clean Package"){
withMaven(jdk: 'javapath', maven: 'maven') {
sh "mvn clean package"
}
}
stage('Build Docker Image'){
sh 'docker build -t yadalahemanth/mytag .'
}
stage('Push Docker Image'){
withDockerRegistry([credentialsId: 'faa6d20a-5bc6-4b5e-835e-7e5116e9b1fc']) {
sh 'docker push yadalahemanth/mytag:latest'
}
}
stage('Run Docker Image In Dev Server'){
def dockerRun = ' docker run -d -p 8080:8080 --name java-web-app dockerhandson/java-web-app'
sshagent(['DOCKER_SERVER']) {
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}"
}
}
}