From 7151355d6ddc661195a29829138bd84c79cd78cd Mon Sep 17 00:00:00 2001 From: Aaron Kimbre Date: Sun, 16 Jan 2022 12:36:55 -0600 Subject: [PATCH] update docker repo in jenkinsfile --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 4626be3..a98efa7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -37,12 +37,12 @@ node('worker'){ } else { tag = params.BRANCH.replace('\\', '-') } - sh "docker build -t aronwk/dlu-account_manager:${tag} ." + sh "docker build -t aronwk/nexus-dashboard:${tag} ." } stage("Push Container"){ withCredentials([usernamePassword(credentialsId: 'docker-hub-token', passwordVariable: 'password', usernameVariable: 'username')]) { sh "docker login -u ${username} -p ${password}" - sh "docker push aronwk/dlu-account_manager:${tag}" + sh "docker push aronwk/nexus-dashboard:${tag}" sh 'docker logout' } }