forked from MithunTechnologiesDevOps/java-web-app-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
executable file
·38 lines (27 loc) · 1.11 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
node{
stage('SCM Checkout'){
git url: 'https://github.com/roopa99/java-web-app-docker.git',branch: 'master'
}
stage(" Maven Clean Package"){
withMaven(jdk: 'JAVA_HOME', maven: 'MAVEN_HOME'){
sh "mvn claen package"
}
}
stage('Build Docker Image'){
sh 'docker build -t roopa45/java-web-app.'
}
stage('Push Docker Image'){
wwithCredentials([usernameColonPassword(credentialsId: 'dockerhubroopa', variable: 'dockerhub')]) {
sh 'docker push roopa45/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 [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}"
}
}
}
}