From 3f7a2fba7017956d862d323c46b3980af6b410ff Mon Sep 17 00:00:00 2001 From: lilinsiman Date: Wed, 17 Dec 2025 15:26:09 +0800 Subject: [PATCH] [main][doc] Instructions for using permissions added to docker (#5092) ### What this PR does / why we need it? Instructions for using permissions added to docker ### Does this PR introduce _any_ user-facing change? no ### How was this patch tested? ut - vLLM version: v0.12.0 - vLLM main: https://github.com/vllm-project/vllm/commit/ad32e3e19ccf0526cb6744a5fed09a138a5fb2f9 Signed-off-by: lilinsiman --- docs/source/faqs.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/source/faqs.md b/docs/source/faqs.md index 2530494b..0a89a664 100644 --- a/docs/source/faqs.md +++ b/docs/source/faqs.md @@ -240,3 +240,6 @@ This is often due to system compatibility issues. You can resolve this by using 2. Transfer the image archive Copy the `vllm_ascend_.tar` file (where `` is the image tag you used) to your target machine + +### 21. Why am I getting an error when executing the script to start a Docker container? The error message is: "operation not permitted". +When using `--shm-size`, you may need to add the `--privileged=true` flag to your `docker run` command to grant the container necessary permissions. Please be aware that using `--privileged=true` grants the container extensive privileges on the host system, which can be a security risk. Only use this option if you understand the implications and trust the container's source.