forked from LondheShubham153/node-todo-cicd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
40 lines (38 loc) · 1.27 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
39
40
pipeline {
agent { label "dev-server"}
stages {
stage("code"){
steps{
git url: "https://github.com/LondheShubham153/node-todo-cicd.git", branch: "master"
echo 'bhaiyya code clone ho gaya'
}
}
stage("build and test"){
steps{
sh "docker build -t node-app-test-new ."
echo 'code build bhi ho gaya'
}
}
stage("scan image"){
steps{
echo 'image scanning ho gayi'
}
}
stage("push"){
steps{
withCredentials([usernamePassword(credentialsId:"dockerHub",passwordVariable:"dockerHubPass",usernameVariable:"dockerHubUser")]){
sh "docker login -u ${env.dockerHubUser} -p ${env.dockerHubPass}"
sh "docker tag node-app-test-new:latest ${env.dockerHubUser}/node-app-test-new:latest"
sh "docker push ${env.dockerHubUser}/node-app-test-new:latest"
echo 'image push ho gaya'
}
}
}
stage("deploy"){
steps{
sh "docker-compose down && docker-compose up -d"
echo 'deployment ho gayi'
}
}
}
}