proxy-nginx/gitblit/start-gitblit.jenkinsfile

15 lines
245 B
Plaintext
Executable File

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