Skip to content

Commit

Permalink
fix: comment out Build and Push stages in Jenkinsfile and update Depl…
Browse files Browse the repository at this point in the history
…oyment stage to echo manifest repository
  • Loading branch information
Ganthepro committed Dec 24, 2024
1 parent 6f3b6f6 commit b34b8b5
Showing 1 changed file with 20 additions and 19 deletions.
39 changes: 20 additions & 19 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,30 +22,31 @@ 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') {
steps {
script {
sh "git clone $manifest-repo"
echo"${manifest-repo}"
// sh "git clone $manifest-repo"
// ใช้คำสั่ง git clone เพื่อทำการ clone โปรเจคของเรา
}
}
Expand Down

0 comments on commit b34b8b5

Please sign in to comment.