pipeline{ agent any stages { stage("build"){ steps{ script{ docker-compose up -d --build } } } } }