pipeline {
agent any
stages {
stage('Code') {
steps {
git url: 'https://github.com/ishwarshinde041/node-todo-cicd.git', branch: 'master'
}
}
stage('Build') {
steps {
sh 'docker build . -t node-app-new'
}
}
stage('Deploy') {
steps {
sh sh "docker-compose down && docker-compose up -d"
}
}
}
}