forked from darinpope/jenkins-example-docker-compose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
35 lines (35 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
pipeline {
agent any
stages {
stage('Hello') {
steps {
sh '''
PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/syno/sbin:/usr/syno/bin:/usr/local/sbin:/usr/local/bin
echo $PATH
docker version
docker info
docker-compose version
curl --version
jq --version
'''
}
}
stage('Start container') {
steps {
sh 'docker-compose up -d --no-color --wait'
sh 'docker-compose ps'
}
}
stage('Run tests against the container') {
steps {
sh 'curl http://localhost:3000/param?query=demo | jq'
}
}
}
post {
always {
sh 'docker-compose down --remove-orphans -v'
sh 'docker-compose ps'
}
}
}