-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
35 lines (31 loc) · 1.29 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
node (agent){
def app
stage('Clone repository') {
/* Let's make sure we have the repository cloned to our workspace */
checkout scm
}
stage('Build image') {
/* This builds the actual image; synonymous to
* docker build on the command line */
dir("app") {
sh 'docker image build --no-cache -t 3270_io .'
}
}
stage('Push image') {
/* Finally, we'll push the image with two tags:
* First, the incremental build number from Jenkins
* Second, the 'latest' tag.
* Pushing multiple tags is cheap, as all the layers are reused. */
withCredentials([usernamePassword(credentialsId: 'docker-registry-creds', usernameVariable: 'DOCKER_USERNAME', passwordVariable: 'DOCKER_PASSWORD')]) {
sh 'docker tag 3270_io:latest reg.jnnn.gs/3270_io:latest'
sh 'docker login --username=$DOCKER_USERNAME --password=$DOCKER_PASSWORD reg.jnnn.gs'
sh 'docker push reg.jnnn.gs/3270_io:latest'
}
}
stage('Test HTTP Request') {
def response = httpRequest "http://httpbin.org/response-headers?param1=123"
println("Status: ${response.status}")
println("Response: ${response.content}")
println("Headers: ${response.headers}")
}
}