Добавил логирование в Jenkins

main
Лев 2025-11-28 11:44:56 +05:00
parent 8112bc2385
commit fa72b16fc1
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -2,9 +2,9 @@ pipeline {
agent { label 'agent_smith' } agent { label 'agent_smith' }
stages { stages {
stage('recreate > build > reun container') { stage('recreate > build > run container') {
steps { steps {
sh "docker-compose up -d --force-recreate --build parse_saby" sh "docker-compose up --force-recreate --build parse_saby"
} }
} }
} }