Skip to content

Commit

Permalink
Merge pull request #1 from tanandy/patch-1
Browse files Browse the repository at this point in the history
Create Jenkinsfile
  • Loading branch information
thebtililya authored Nov 3, 2020
2 parents d4b0846 + eecdaf4 commit 5a02cc1
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
pipeline {
agent any

stages {
stage('Deliver Docker images') {
agent {
docker {
image 'docker:19.03.12-dind'
args '-e DOCKER_HOST=$DOCKER_HOST'
}
}

steps {
sh 'printenv'
echo env.BRANCH_NAME
}
}
}
}

0 comments on commit 5a02cc1

Please sign in to comment.