formation 1 년 전
부모
커밋
f654a3cc8d
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      Jenkinsfile

+ 3 - 3
Jenkinsfile

@@ -31,14 +31,14 @@ node{
 
     
 	
-	
-     stage('Push Docker images to Nexus') {
+	stage('Push Docker images to Nexus') {
     withCredentials([usernamePassword(credentialsId: 'nexus', usernameVariable: 'admin', passwordVariable: 'azerty10')]) {
-        sh "docker login -u ${admin} -p ${azerty10} nexus.foodgame.fr:8443"
+        sh "docker login -u ${admin} -p ${azerty10} nexus.foodgame.fr"
         sh "docker-compose push"
     }
 }
 
+
 	
 
     stage('Build Docker MEAN Stack(PreProduction Deployment)')