-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJenkinsfile
More file actions
37 lines (37 loc) · 1.19 KB
/
Jenkinsfile
File metadata and controls
37 lines (37 loc) · 1.19 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
pipeline {
agent any
stages{
stage('Benjamin Gambill - Build Docker Image'){
steps{
script {
bat 'docker build -t bengambill/jenkinsproject:latest .'
}
}
}
stage('Benjamin Gambill - Login to Dockerhub'){
steps{
script {
withCredentials([usernamePassword(credentialsId: 'dockerHub', passwordVariable: 'dockerHubPassword', usernameVariable: 'dockerHubUser')]) {
bat "docker login -u ${env.dockerHubUser} -p ${env.dockerHubPassword}"
}
}
}
}
stage('Benjamin Gambill - Push image to Dockerhub'){
steps{
script {
withCredentials([usernamePassword(credentialsId: 'dockerHub', passwordVariable: 'dockerHubPassword', usernameVariable: 'dockerHubUser')]) {
bat 'docker push bengambill/jenkinsproject:latest'
}
}
}
}
}
post {
always {
script {
bat 'docker logout'
}
}
}
}