From 600e993dfd7175ea9fdb6f5b7be5ebf5e14c7eee Mon Sep 17 00:00:00 2001 From: Ryan Kegel Date: Wed, 10 Dec 2025 17:10:21 -0500 Subject: [PATCH] added promotion --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index b7efef5..ef29c38 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,8 +3,8 @@ pipeline { environment { // Tag images with the build number so they are unique - FRONTEND_IMAGE = "chore-app-backend:${env.BUILD_ID}" - BACKEND_IMAGE = "chore-app-frontend:${env.BUILD_ID}" + FRONTEND_IMAGE = "chore-app-frontend:${env.BUILD_ID}" + BACKEND_IMAGE = "chore-app-backend:${env.BUILD_ID}" VUE_CONTAINER_NAME = "chore-app-frontend" FLASK_CONTAINER_NAME = "chore-app-backend" NETWORK_NAME = "chore-app-net"