21 lines
378 B
Plaintext
21 lines
378 B
Plaintext
|
#!/usr/bin/groovy
|
||
|
image = "mongo-logger"
|
||
|
label = "daily"
|
||
|
build = null
|
||
|
|
||
|
node {
|
||
|
stage("Checkout") {
|
||
|
checkout scm
|
||
|
}
|
||
|
|
||
|
stage("Build") {
|
||
|
build = docker.build("kspaceee/${image}", "--no-cache ./")
|
||
|
}
|
||
|
|
||
|
stage("Push") {
|
||
|
docker.withRegistry("https://registry.hub.docker.com", "dockerhub-kspace") {
|
||
|
build.push(label)
|
||
|
}
|
||
|
}
|
||
|
}
|