From 4f5849855ac606c2fd87371f7f2c4b0c16db149b Mon Sep 17 00:00:00 2001 From: Krzysztof Balka Date: Tue, 22 Sep 2026 10:42:05 +0200 Subject: [PATCH] Fix remote media redirects in VLM demo docs --- demos/continuous_batching/vlm/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/demos/continuous_batching/vlm/README.md b/demos/continuous_batching/vlm/README.md index ef97337585..254961d477 100644 --- a/demos/continuous_batching/vlm/README.md +++ b/demos/continuous_batching/vlm/README.md @@ -23,7 +23,7 @@ Running this command starts the container: mkdir -p models # in case GPU is available export GPU_ARGS=$(if ls /dev/dri/render* >/dev/null 2>&1; then echo "--device /dev/dri --group-add $(stat -c '%g' /dev/dri/render* | head -n1)"; fi) -docker run -d ${GPU_ARGS} -u $(id -u):$(id -g) --rm -p 8000:8000 -v ${HOME}/models:/models:rw openvino/model_server:weekly --rest_port 8000 --source_model OpenVINO/Qwen3.6-35B-A3B-int4-ov --model_repository_path /models --allowed_media_domains raw.githubusercontent.com +docker run -d ${GPU_ARGS} -u $(id -u):$(id -g) --rm -p 8000:8000 -v ${HOME}/models:/models:rw -e OVMS_MEDIA_URL_ALLOW_REDIRECTS=1 openvino/model_server:weekly --rest_port 8000 --source_model OpenVINO/Qwen3.6-35B-A3B-int4-ov --model_repository_path /models --allowed_media_domains raw.githubusercontent.com ``` ::: @@ -33,6 +33,7 @@ If you run on GPU make sure to have appropriate drivers installed, so the device ```bat mkdir c:\models +set OVMS_MEDIA_URL_ALLOW_REDIRECTS=1 ovms --rest_port 8000 --source_model OpenVINO/Qwen3.6-35B-A3B-int4-ov --model_repository_path c:\models --allowed_media_domains raw.githubusercontent.com ```