diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..1cdbd9f --- /dev/null +++ b/Jenkinsfile @@ -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 + } + } + } +}