Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
executable file
·
40 lines (28 loc) · 1.25 KB

File metadata and controls

executable file
·
40 lines (28 loc) · 1.25 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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 url: 'https://github.com/MithunTechnologiesDevOps/java-web-app-docker.git',branch: 'master'
}
stage(" Maven Clean Package"){
def mavenHome = tool name: "Maven-3.5.6", type: "maven"
def mavenCMD = "${mavenHome}/bin/mvn"
sh "${mavenCMD} clean package"
}
stage('Build Docker Image'){
sh 'docker build -t dockerhandson/java-web-app .'
}
stage('Push Docker Image'){
withCredentials([string(credentialsId: 'Docker_Hub_Pwd', variable: 'Docker_Hub_Pwd')]) {
sh "docker login -u dockerhandson -p ${Docker_Hub_Pwd}"
}
sh 'docker push dockerhandson/java-web-app'
}
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 ubuntu@172.31.20.72 docker stop java-web-app || true'
sh 'ssh ubuntu@172.31.20.72 docker rm java-web-app || true'
sh 'ssh ubuntu@172.31.20.72 docker rmi -f $(docker images -q) || true'
sh "ssh ubuntu@172.31.20.72 ${dockerRun}"
}
}
}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.