Skip to content

Commit

Permalink
fix: fix Robotoff port numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
raphael0202 committed Dec 1, 2024
1 parent e42e921 commit b7d95c3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
1 change: 0 additions & 1 deletion .github/workflows/container-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,6 @@ jobs:
echo "ELASTIC_USER=elastic" >> .env
echo "ELASTIC_PASSWORD=${{ secrets.ELASTIC_PASSWORD }}" >> .env
echo "TRITON_HOST=triton" >> .env
echo "TRITON_EXPOSE_HTTP=8003" >> .env
echo "TRITON_MODELS_DIR=./models/triton" >> .env
echo "FASTTEXT_HOST=fasttext" >> .env
echo "FASTTEXT_MODEL_DIR=./models" >> .env
Expand Down
6 changes: 3 additions & 3 deletions docker/ml-gpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ services:
restart: $RESTART_POLICY
image: nvcr.io/nvidia/tritonserver:24.08-py3
ports:
- ${TRITON_EXPOSE_HTTP:-5003}:8000
- ${TRITON_EXPOSE_GRPC:-5004}:8001
- ${TRITON_EXPOSE_METRICS:-5005}:8002
- ${TRITON_EXPOSE_HTTP:-5503}:8000
- ${TRITON_EXPOSE_GRPC:-5504}:8001
- ${TRITON_EXPOSE_METRICS:-5505}:8002
volumes:
- ${TRITON_MODELS_DIR:-../models/triton}:/models
# We need to add nvidia_entrypoint.sh for the GPU to be correctly detected
Expand Down
6 changes: 3 additions & 3 deletions docker/ml.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ services:
restart: $RESTART_POLICY
image: nvcr.io/nvidia/tritonserver:24.08-py3
ports:
- ${TRITON_EXPOSE_HTTP:-5003}:8000
- ${TRITON_EXPOSE_GRPC:-5004}:8001
- ${TRITON_EXPOSE_METRICS:-5005}:8002
- ${TRITON_EXPOSE_HTTP:-5503}:8000
- ${TRITON_EXPOSE_GRPC:-5504}:8001
- ${TRITON_EXPOSE_METRICS:-5505}:8002
volumes:
- ${TRITON_MODELS_DIR:-../models/triton}:/models
# We use explicit model control mode to be able to load/unload model dynamically
Expand Down

0 comments on commit b7d95c3

Please sign in to comment.