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" ''' } }