-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathJenkinsfile
More file actions
95 lines (73 loc) · 2.35 KB
/
Jenkinsfile
File metadata and controls
95 lines (73 loc) · 2.35 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
pipeline{
agent any;
triggers {
githubPush()
}
stages{
stage("Code Pulling from Github"){
steps{
git url: "https://github.com/TheCodeHeist-Coder/Rexial.git", branch: "main"
echo "Code cloned successfully..."
}
}
stage("Build"){
steps{
withCredentials([
string(credentialsId: 'DATABASE_URL', variable: 'DATABASE_URL')
]){
sh '''
DATABASE_URL=$DATABASE_URL docker compose -f docker-compose.prod.yml build
'''
}
}
}
stage("Pushing to Docker Hub"){
steps{
withCredentials([
usernamePassword(credentialsId: "DockerHubCreds",
passwordVariable: "dockerHubPass",
usernameVariable: "dockerHubUser"
)
]){
sh '''
echo $dockerHubPass | docker login -u $dockerHubUser --password-stdin
docker push codeheist/rexial-frontend:latest
docker push codeheist/rexial-http-server:latest
docker push codeheist/rexial-ws-server:latest
'''
}
}
}
stage("Deploy"){
steps{
withCredentials([
string(credentialsId: 'DATABASE_URL', variable: 'DATABASE_URL'),
]){
sh '''
docker compose -f docker-compose.prod.yml pull frontend backend ws-server
DATABASE_URL=$DATABASE_URL docker compose -f docker-compose.prod.yml up -d
'''
}
}
}
stage("Cleanup") {
steps{
sh '''
docker image prune -f
docker builder prune -f
'''
}
}
}
post{
always{
sh "docker logout"
}
success{
echo "Deployment Successful....!"
}
failure{
echo "Pipeline failed. Check logs above"
}
}
}