Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fixed context for oddball builds. paths will stay the same.
wgthom committed Apr 20, 2019
1 parent a442729 commit 97fc4a9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Jenkinsfile
@@ -98,13 +98,13 @@ pipeline {
steps {
script {
docker.withRegistry('https://registry.hub.docker.com/', "dockerhub-${maintainer}") {
def baseImg = docker.build("${maintainer}/${imagename}:101.1.1", "--no-cache --pull 101/ex101.1.1")
def baseImg = docker.build("${maintainer}/${imagename}:101.1.1", "--no-cache --pull ex101/ex101.1.1")
baseImg.push("101.1.1-${tag}")

baseImg = docker.build("${maintainer}/${imagename}:211.1.1", "--no-cache --pull 211/ex211.1.1")
baseImg = docker.build("${maintainer}/${imagename}:211.1.1", "--no-cache --pull ex211/ex211.1.1")
baseImg.push("211.1.1-${tag}")

baseImg = docker.build("${maintainer}/${imagename}:301.4.1", "--no-cache --pull 301/ex301.4.1")
baseImg = docker.build("${maintainer}/${imagename}:301.4.1", "--no-cache --pull ex301/ex301.4.1")
baseImg.push("301.4.1-${tag}")
}
}

0 comments on commit 97fc4a9

Please sign in to comment.