Исправление бесконечного логирование в Jenkins

FixScheduler
Лев 2025-12-05 17:25:05 +05:00
parent eb496a94fb
commit 1bc066eace
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -4,7 +4,7 @@ pipeline {
stages {
stage('recreate > build > run container') {
steps {
sh "docker-compose up --force-recreate --build parse_saby && timeout 5m docker compose logs -f || true"
sh "docker-compose up -d --force-recreate --build parse_saby && timeout 5m docker-compose logs -f || true"
}
}
}