From b8158278cf6b4860cd1c9ba4b0a84e9a41385a29 Mon Sep 17 00:00:00 2001 From: Riz Urian <98958099+rizjosel@users.noreply.github.com> Date: Sat, 27 Dec 2025 10:34:13 +0800 Subject: [PATCH] Update Jenkinsfile.pr Signed-off-by: Riz Urian <98958099+rizjosel@users.noreply.github.com> --- Jenkinsfile.pr | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile.pr b/Jenkinsfile.pr index cfc220985..2335d868a 100644 --- a/Jenkinsfile.pr +++ b/Jenkinsfile.pr @@ -33,9 +33,9 @@ pipeline { steps { script { try { - sh "docker run -d --name ${APP_NAME}-test -p 8080:8080 ${IMAGE_NAME}" + sh "docker run -d --name ${APP_NAME}-test -p 18080:8080 ${IMAGE_NAME}" sh "sleep 15" - sh "curl -f http://localhost:8080/actuator/health" + sh "curl -f http://localhost:18080/actuator/health" } finally { sh "docker stop ${APP_NAME}-test || true" sh "docker rm ${APP_NAME}-test || true"