-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathJenkinsfile
39 lines (39 loc) · 895 Bytes
/
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
pipeline {
agent any
stages {
stage('verify tooling') {
steps {
slackSend color: 'black', message: 'planning build process is started'
sh '''
docker version
docker info
docker compose version
curl --version
jq --version
'''
}
}
stage('Clean up') {
steps {
sh 'docker system prune -a -f'
}
}
stage('Start container') {
steps {
sh 'docker compose up -d --no-color --build --wait'
sh 'docker compose ps'
}
}
}
post {
always {
slackSend color: 'black', message: 'planning build process is finished'
}
success {
slackSend color: 'good', message: 'planning build process is done successfully!'
}
failure {
slackSend color: 'bad', message: 'planning build process is done with failure'
}
}
}