Change platform port to 8088

This commit is contained in:
2026-05-19 21:40:58 +01:00
parent 4b5ada60f2
commit 1e199b589c

View File

@@ -26,7 +26,7 @@ pipeline {
docker run -d \ docker run -d \
--name management-platform \ --name management-platform \
--restart unless-stopped \ --restart unless-stopped \
-p 8000:8000 \ -p 8088:8000 \
-v /var/run/docker.sock:/var/run/docker.sock \ -v /var/run/docker.sock:/var/run/docker.sock \
-v /root:/root \ -v /root:/root \
management-platform:latest management-platform:latest
@@ -40,7 +40,7 @@ pipeline {
steps { steps {
sh ''' sh '''
sleep 3 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"
''' '''
} }
} }