parse_saby/Jenkinsfile

18 lines
300 B
Groovy

pipeline {
agent { label 'agent_smith' }
stages {
stage('recreate > build > reun container') {
steps {
sh "docker-compose up --force-recreate --build -d parse_saby"
}
}
stage('show logs') {
steps {
sh "docker-compose logs -f"
}
}
}
}