diff --git a/Jenkinsfile b/Jenkinsfile index 67555971d..6ebacd596 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -33,7 +33,7 @@ pipeline { stage('Docker up') { steps { sh ''' - docker build -t "gavetisyangd/main:${GIT_COMMIT}" ./ + docker build -t "gavetisyangd/mr:${GIT_COMMIT}" ./ ''' } } @@ -43,7 +43,7 @@ pipeline { withCredentials([string(credentialsId: 'dhub', variable: 'TOKEN')]) { sh ''' echo $TOKEN | docker login -u gavetisyangd --password-stdin - docker push gavetisyangd/main + docker push "gavetisyangd/mr:${GIT_COMMIT}" ''' } }