diff --git a/Jenkinsfile b/Jenkinsfile index 9ac842c..3633f42 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -39,7 +39,7 @@ pipeline{ // } // } stage('Pull and Deploy') - steps + steps { // Send commands to remote Docker host via SSH script { sshCommand remote: [ @@ -54,11 +54,11 @@ pipeline{ ''' } } - + post { always { sh 'docker logout' } } - +}