Skip to content

Commit

Permalink
fix: uncomment and restore build and push stages in Jenkinsfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Ganthepro committed Dec 24, 2024
1 parent f0e0ab8 commit 8c4f7db
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,25 +22,25 @@ pipeline {


stages {
// stage('Build') {
// steps {
// script {
// sh "docker build --no-cache --target production -t $DOCKER_CREDENTIALS_USR/edusaig:$BUILD_NUMBER ."
// // ใช้คำสั่ง docker.build เพื่อทำการ build image ของโปรเจคของเรา
// }
// }
// }
stage('Build') {
steps {
script {
sh "docker build --no-cache --target production -t $DOCKER_CREDENTIALS_USR/edusaig:$BUILD_NUMBER ."
// ใช้คำสั่ง docker.build เพื่อทำการ build image ของโปรเจคของเรา
}
}
}

// stage('Push') {
// steps {
// script {
// docker.withRegistry('https://registry.hub.docker.com', 'gan-docker-hub') {
// docker.image("$DOCKER_CREDENTIALS_USR/edusaig:$BUILD_NUMBER").push()
// // ใช้คำสั่ง docker.image.push เพื่อทำการ push image ของเราไปยัง Docker Hub
// }
// }
// }
// }
stage('Push') {
steps {
script {
docker.withRegistry('https://registry.hub.docker.com', 'gan-docker-hub') {
docker.image("$DOCKER_CREDENTIALS_USR/edusaig:$BUILD_NUMBER").push()
// ใช้คำสั่ง docker.image.push เพื่อทำการ push image ของเราไปยัง Docker Hub
}
}
}
}

stage('Deployment') {
script {
Expand Down

0 comments on commit 8c4f7db

Please sign in to comment.