parse_saby/Jenkinsfile

18 lines
297 B
Groovy

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