Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion vllm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ HOST_DIR is the directory you want to mount into the docker.

```bash
IMAGE_NAME="intel/llm-scaler-platform:latest"
HOST_DIR="$2"
HOST_DIR=""

# Verify directory exists
if [ ! -d "$HOST_DIR" ]; then
Expand All @@ -95,7 +95,9 @@ fi

# Run the container
docker run -it \
--privileged \
--device=/dev/dri \
$(for dev in /dev/mei*; do echo --device $dev; done) \
--group-add video \
--cap-add=SYS_ADMIN \
--mount type=bind,source=/dev/dri/by-path,target=/dev/dri/by-path \
Expand Down