pipeline { agent any stages { stage('start - gitblit') { steps { script{ def _gitblit = "docker compose --file gitblit/gitblit-compose.yml up --detach" sh( _gitblit ) } } } } }