diff --git a/Jenkinsfile b/Jenkinsfile index 66037d4..6aa6fca 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ pipeline { stage('Build docker image'){ steps{ script{ - sh 'docker build -t akshu20791/2febimg:v1 .' + sh 'docker build -t ashishnikam/2febimg:v1 .' sh 'docker images' } } @@ -19,7 +19,7 @@ pipeline { steps { withCredentials([usernamePassword(credentialsId: 'dockerhub-pwd', passwordVariable: 'PASS', usernameVariable: 'USER')]) { sh "echo $PASS | docker login -u $USER --password-stdin" - sh 'docker push akshu20791/2febimg:v1' + sh 'docker push ashishnikam/2febimg:v1' } } }