From 4efad49146c40e7a1e3eac218c2d684c735d6631 Mon Sep 17 00:00:00 2001 From: BrokenFire Date: Sun, 18 Feb 2018 18:44:33 +0100 Subject: [PATCH] Change DockerHub repo --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 0e57dd5..012b398 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -8,14 +8,14 @@ node { /* This builds the actual image; synonymous to * docker build on the command line */ - app = docker.build("brokenfire/testjenkins","--rm=true .") + app = docker.build("brokenfire/brokendiscordbot","--rm=true .") } stage('Push image') { /* Finally, we'll push the image with two tags: * First, the incremental build number from Jenkins * Second, the 'latest' tag. * Pushing multiple tags is cheap, as all the layers are reused. */ - app.push() + app.push() } stage('Cleaning'){