From d2c7e2c91fb80d80c656c0e182d3632b0627f11a Mon Sep 17 00:00:00 2001 From: Barzan Hayati Date: Tue, 23 Sep 2025 06:58:15 +0000 Subject: [PATCH] Fix entrypoint --- entrypoint.sh | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index c9d74cf..afe1f2c 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -8,19 +8,8 @@ fi echo "[INFO] Starting Triton servers with the following ports:" -echo "Pose - HTTP:$POSE_HTTP_PORT GRPC:$POSE_GRPC_PORT METRICS:$POSE_METRICS_PORT" echo "Face - HTTP:$FACE_HTTP_PORT GRPC:$FACE_GRPC_PORT METRICS:$FACE_METRICS_PORT" -# Start Triton server #1 (Body detection) in background -tritonserver \ - --model-repository=/root/pose_detection \ - --http-port=$POSE_HTTP_PORT \ - --grpc-port=$POSE_GRPC_PORT \ - --metrics-port=$POSE_METRICS_PORT & - -# Wait a bit to ensure Triton servers are up -sleep 5 - # Start Triton server #2 (Face detection, preprocess, postprocess) in background tritonserver \ --model-repository=/root/face_models \