jenki

PHOTO EMBED

Fri Dec 15 2023 05:13:01 GMT+0000 (Coordinated Universal Time)

Saved by @ishwarshinde041 #html

pipeline {
    agent { label 'dev' }
    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 "docker-compose down && docker-compose up -d"
            }
        }
    }
}
content_copyCOPY