From 9dcc53bb3b5b53ad07bb9f03420b32a32ca0172a Mon Sep 17 00:00:00 2001 From: Kameron Kenny <1267885+kkenny@users.noreply.github.com> Date: Sat, 25 May 2024 14:08:13 -0400 Subject: [PATCH] jenk --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 28b50d5..bbb7f3a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -17,7 +17,7 @@ pipeline { stage("Build Containers and push to registry") { steps { script { - sh 'docker build -t docker-registry1.in.thelinuxpro.net:5000/sites/kameronkenny.com:0.0.3 . --push' + sh 'docker build -t docker-registry1.in.thelinuxpro.net:5000/sites/thelinux.pro:0.0.1 . --push' } } } @@ -25,7 +25,7 @@ pipeline { stage("Tag image as latest") { steps { script { - sh 'docker tag docker-registry1.in.thelinuxpro.net:5000/sites/kameronkenny.com:0.0.3 docker-registry1.in.thelinuxpro.net:5000/sites/kameronkenny.com:latest' + sh 'docker tag docker-registry1.in.thelinuxpro.net:5000/sites/thelinux.pro:0.0.1 docker-registry1.in.thelinuxpro.net:5000/sites/thelinux.pro:latest' } } } @@ -33,7 +33,7 @@ pipeline { stage("push latest tag") { steps { script { - sh 'docker image push docker-registry1.in.thelinuxpro.net:5000/sites/kameronkenny.com:latest' + sh 'docker image push docker-registry1.in.thelinuxpro.net:5000/sites/thelinux.pro:latest' } } }