Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sanjaygeeky/142dbd3726dcc26611d27908b60d567e to your computer and use it in GitHub Desktop.
Save sanjaygeeky/142dbd3726dcc26611d27908b60d567e to your computer and use it in GitHub Desktop.
Docker Build and Publish Script Snippet for Jenkinsfile
docker.withRegistry('https://index.docker.io/v1/', 'dockerlogin') {
def dockerImage = docker.build("xxxxxx/xxxxx:v${env.BUILD_ID}", "./")
dockerImage.push()
dockerImage.push("latest")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment