Update jenkinsfile

This commit is contained in:
2025-11-20 17:21:54 +00:00
parent 7d20b396ad
commit b1c1aae383

View File

@@ -52,13 +52,19 @@ pipeline {
stage('Spring Deployment') {
steps {
sh 'docker-compose up -d spring'
sh '''
docker-compose rm -f spring || true
docker-compose up -d spring
'''
}
}
stage('Angular Deployment') {
steps {
sh 'docker-compose up -d angular'
sh '''
docker-compose rm -f angular || true
docker-compose up -d angular
'''
}
}
}