-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
33 lines (32 loc) · 1.13 KB
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
pipeline {
agent any
stages{
stage("Code"){
steps{
git url: "https://github.com/1Harmeetsingh/simple-flask-two-tier-app.git", branch: "main"
}
}
stage("Build & Test"){
steps{
sh "sudo apt install docker.io"
sh "sudo apt install docker-compose"
sh "sudo -S chown $USER /var/run/docker.sock"
sh "docker build . -t flaskapp"
}
}
stage("Push to DockerHub"){
steps{
withCredentials([usernamePassword(credentialsId:"dockerHub",passwordVariable:"dockerHubPass",usernameVariable:"dockerHubUser")]){
sh "docker login -u ${env.dockerHubUser} -p ${env.dockerHubPass}"
sh "docker tag flaskapp ${env.dockerHubUser}/simple-flask-two-tier-app:latest"
sh "docker push ${env.dockerHubUser}/simple-flask-two-tier-app:latest"
}
}
}
stage("Deploy"){
steps{
sh "docker-compose down && docker-compose up -d"
}
}
}
}