From fa9fe8ac5ddc51e8183afba6cee91a61a50fb2d5 Mon Sep 17 00:00:00 2001 From: Kameron Kenny - pi501 Date: Sat, 25 May 2024 15:21:40 -0400 Subject: [PATCH] bump --- Dockerfile | 2 +- Jenkinsfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index ce8209b..3082908 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM docker-registry1.in.thelinuxpro.net:5000/tlp/tlp_jekyll:0.0.1 -LABEL version="0.0.1" +LABEL version="0.0.2" LABEL image.author.name="Kameron Kenny" LABEL image.author.email="kameron@localhost" LABEL description="A Jekyll site for thelinux.pro." diff --git a/Jenkinsfile b/Jenkinsfile index bbb7f3a..a902026 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/thelinux.pro:0.0.1 . --push' + sh 'docker build -t docker-registry1.in.thelinuxpro.net:5000/sites/thelinux.pro:0.0.2 . --push' } } } @@ -25,7 +25,7 @@ pipeline { stage("Tag image as latest") { steps { script { - 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' + sh 'docker tag docker-registry1.in.thelinuxpro.net:5000/sites/thelinux.pro:0.0.2 docker-registry1.in.thelinuxpro.net:5000/sites/thelinux.pro:latest' } } }