Created an attachable network which was needed for maven in petclinic repo to connect to ci services internally

This commit is contained in:
Shahzad A. Chaudhry 2017-09-23 03:10:35 +01:00
parent c60e13f45d
commit beada8ac6a
No known key found for this signature in database
GPG key ID: C834FD3A4FD56333

7
Jenkinsfile vendored
View file

@ -1,5 +1,10 @@
pipeline {
agent { docker 'maven:alpine' }
agent {
docker{
image 'maven:alpine'
args '--network=ci_attachable'
}
}
options {
gitLabConnection('gitlab')
buildDiscarder(logRotator(numToKeepStr: '5'))