9
0
Fork 0

Merge branch 'master' of git.k-space.ee:k-space/mikrotik-exporter
gitea-kspace/mikrotik-exporter/pipeline/head There was a failure building this commit Details

This commit is contained in:
Lauri Võsandi 2021-10-18 17:04:06 +03:00
commit cf8a7f1a26
1 changed files with 20 additions and 0 deletions

20
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,20 @@
#!/usr/bin/groovy
image = "mikrotik-exporter"
label = "latest"
build = null
node {
stage("Checkout") {
checkout scm
}
stage("Build") {
build = docker.build("kspaceee/${image}")
}
stage("Push") {
docker.withRegistry("https://registry.hub.docker.com", "dockerhub-kspace") {
build.push(label)
}
}
}