forked from heroku/alpinehelloworld
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathJenkinsfile
89 lines (89 loc) · 2.34 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
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
pipeline {
environment {
IMAGE_NAME = "alpinehelloworld"
IMAGE_TAG = "latest"
STAGING = "eazytraining-staging"
PRODUCTION = "eazytraining-production"
}
agent none
stages {
stage('Build image') {
agent any
steps {
script {
sh 'docker build -t eazytraining/$IMAGE_NAME:$IMAGE_TAG .'
}
}
}
stage('Run container based on builded image') {
agent any
steps {
script {
sh '''
docker run --name $IMAGE_NAME -d -p 80:5000 -e PORT=5000 eazytraining/$IMAGE_NAME:$IMAGE_TAG
sleep 5
'''
}
}
}
stage('Test image') {
agent any
steps {
script {
sh '''
curl http://localhost | grep -q "Hello world!"
'''
}
}
}
stage('Clean Container') {
agent any
steps {
script {
sh '''
docker stop $IMAGE_NAME
docker rm $IMAGE_NAME
'''
}
}
}
stage('Push image in staging and deploy it') {
when {
expression { GIT_BRANCH == 'origin/master' }
}
agent any
environment {
HEROKU_API_KEY = credentials('heroku_api_key')
}
steps {
script {
sh '''
heroku container:login
heroku create $STAGING || echo "project already exist"
heroku container:push -a $STAGING web
heroku container:release -a $STAGING web
'''
}
}
}
stage('Push image in production and deploy it') {
when {
expression { GIT_BRANCH == 'origin/master' }
}
agent any
environment {
HEROKU_API_KEY = credentials('heroku_api_key')
}
steps {
script {
sh '''
heroku container:login
heroku create $PRODUCTION || echo "project already exist"
heroku container:push -a $PRODUCTION web
heroku container:release -a $PRODUCTION web
'''
}
}
}
}
}