Удалить Jenkinsfile

devel
loparev 2025-05-14 17:50:55 +05:00
parent f4515aacfb
commit 5e0c098758
1 changed files with 0 additions and 23 deletions

23
Jenkinsfile vendored
View File

@ -1,23 +0,0 @@
pipeline {
agent any
stages {
stage('Stop and Remove Existing Container') {
steps {
sh '''
docker stop open_sesam || true
docker rm open_sesam || true
docker-compose down || true
'''
}
}
stage('Build and Run Container') {
steps {
sh '''
docker-compose up --build -d
'''
}
}
}
}