parse_saby/Jenkinsfile

12 lines
252 B
Groovy

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"
}
}
}
}