From 6181a8f35e9f79504eafe1e0a57cb357a039ae35 Mon Sep 17 00:00:00 2001 From: Julien Cabillot Date: Tue, 25 Jun 2019 18:16:53 -0400 Subject: [PATCH] test --- Jenkinsfile | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index aa0e5d8..9ebfe7d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -8,18 +8,22 @@ pipeline { agent any stages { - stage('Building image') { - steps{ - script { - dockerImage = docker.build registry + ":latest" - } - } + stage('Clone repository') { + /* Let's make sure we have the repository cloned to our workspace */ + checkout scm } + + stage('Build image') { + /* This builds the actual image; synonymous to + * docker build on the command line */ + app = docker.build("jcabillot/jenkins-wdocker") + } + stage('Deploy Image') { steps{ script { - docker.withRegistry('', registryCredential) { - dockerImage.push() + docker.withRegistry('https://registry.hub.docker.com', 'docker-hub-credentials') { + app.push("latest") } } }