From 73334d15d7ffeda2a3f98a601dc22825b54e8de9 Mon Sep 17 00:00:00 2001 From: Kameron Kenny <1267885+kkenny@users.noreply.github.com> Date: Sun, 2 Jun 2024 09:49:28 -0400 Subject: [PATCH] bump --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 28b50d5..77700f5 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/kameronkenny.com:0.0.4 . --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/kameronkenny.com:0.0.4 docker-registry1.in.thelinuxpro.net:5000/sites/kameronkenny.com:latest' } } }