This commit is contained in:
Kameron Kenny 2024-06-02 09:49:28 -04:00
parent 818f7583b7
commit 73334d15d7
No known key found for this signature in database
GPG Key ID: E5006629839D2276
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -17,7 +17,7 @@ pipeline {
stage("Build Containers and push to registry") { stage("Build Containers and push to registry") {
steps { steps {
script { 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") { stage("Tag image as latest") {
steps { steps {
script { 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'
} }
} }
} }