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