젠킨스파일 수정중

This commit is contained in:
biryu2000 2025-05-25 02:11:46 +09:00
parent 8dde101ff4
commit 77b9800ccc

3
Jenkinsfile vendored
View File

@ -8,7 +8,10 @@ pipeline {
stages { stages {
stage('Build & Deploy') { stage('Build & Deploy') {
steps { steps {
echo '🔄 기존 컨테이너 중지 중...'
sh 'docker compose down' sh 'docker compose down'
echo '🚀 새 이미지 빌드 및 컨테이너 실행 중...'
sh 'docker compose up -d --build' sh 'docker compose up -d --build'
} }
} }