pipeline { agent { label 'agent_smith' } stages { stage('recreate > build > run container') { steps { sh "docker-compose up -d --force-recreate --build parse_saby && timeout 5m docker-compose logs -f || true" } } } }