forked from LondheShubham153/node-todo-cicd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
30 lines (28 loc) · 939 Bytes
/
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
pipeline {
agent any
stages {
stage('code') {
steps {
git url: 'https://github.com/asmmitt777/node-todo-cicd.git', branch: 'master'
}
}
stage('build and test') {
steps {
sh 'docker build . -t docker9asmit/node-todo-app:latest'
}
}
stage('login and push'){
steps{
withCredentials([usernamePassword(credentialsId:'dockerHub',passwordVariable:'dockerHubPassword', usernameVariable:'dockerHubUser')]) {
sh "docker login -u ${env.dockerHubUser} -p ${env.dockerHubPassword}"
sh "docker push docker9asmit/node-todo-app:latest"
}
}
}
stage('deploy'){
steps{
sh 'docker-compose down && docker-compose build --force-rm --no-cache && docker-compose up -d'
}
}
}
}