From 1e199b589c78a008609d39f7a9cb935c507a852a Mon Sep 17 00:00:00 2001 From: ameniboukattaya Date: Tue, 19 May 2026 21:40:58 +0100 Subject: [PATCH] Change platform port to 8088 --- platform/Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platform/Jenkinsfile b/platform/Jenkinsfile index 006af28..bf26ba1 100644 --- a/platform/Jenkinsfile +++ b/platform/Jenkinsfile @@ -26,7 +26,7 @@ pipeline { docker run -d \ --name management-platform \ --restart unless-stopped \ - -p 8000:8000 \ + -p 8088:8000 \ -v /var/run/docker.sock:/var/run/docker.sock \ -v /root:/root \ management-platform:latest @@ -40,7 +40,7 @@ pipeline { steps { sh ''' sleep 3 - curl -f http://173.249.20.244:8000/ && echo "✅ Platform responding" || echo "⚠️ Health check failed" + curl -f http://173.249.20.244:8088/ && echo "✅ Platform responding" || echo "⚠️ Health check failed" ''' } }