vllm-deploy-docker
Original:🇺🇸 English
Translated
Deploy vLLM using Docker (pre-built images or build-from-source) with NVIDIA GPU support and run the OpenAI-compatible server.
2installs
Sourcevllm-project/vllm-skills
Added on
NPX Install
npx skill4agent add vllm-project/vllm-skills vllm-deploy-dockerTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →vLLM Docker Deployment
A Claude skill describing how to deploy vLLM with Docker using the official pre-built images or building the image from source supporting NVIDIA GPUs with CUDA. Instructions include NVIDIA CUDA support, example and a minimal snippet, recommended flags, and troubleshooting notes. For AMD, Intel, or other accelerators, please refer to the vLLM documentation for alternative deployment methods.
docker rundocker-composeWhat this skill does
- Deploy vLLM with docker using pre-built images (recommended for most users) or build from source for custom configurations
- Provide example commands for running the OpenAI-compatible server with GPU access and mounted Hugging Face cache
- Point to build-from-source instructions when a custom image or optional dependencies are needed
- Explain common flags: , shared cache mounts, and
--ipc=hosthandlingHF_TOKEN
Prerequisites
- Docker Engine installed (Docker 20.10+ recommended)
- NVIDIA GPU(s) with appropriate drivers and CUDA toolkit installed
- Optional: for API tests
curl - A Hugging Face token if pulling private models or to avoid rate-limits:
HF_TOKEN
Quickstart using Pre-built Image (recommended)
Run a vLLM OpenAI-compatible server with GPU access, mounting the HF cache and forwarding port 8000:
bash
docker run --rm --gpus all \
-v ~/.cache/huggingface:/root/.cache/huggingface \
--env "HF_TOKEN=$HF_TOKEN" \
-p 8000:8000 \
--ipc=host \
vllm/vllm-openai:latest \
--model Qwen/Qwen2.5-1.5B-Instruct- exposes all GPUs to the container. Adjust if you need specific GPUs.
--gpus all - or an appropriately large
--ipc=hostis recommended so PyTorch and vLLM can share host shared memory.--shm-size - Mounting avoids re-downloading models inside the container.
~/.cache/huggingface
Note: vLLM and this skill recommend using the latest Docker image (). For legacy version images, you may refer to the Docker Hub image tags.vllm/vllm-openai:latest
Build Docker image from source
You can build and run vLLM from source by using the provided docker/Dockerfile.
First, check the hardware of the host machine and ensure you have the necessary dependencies installed (e.g., NVIDIA drivers, CUDA toolkit, Docker with BuildKit support). For ARM64/aarch64 builds, refer to the "Building for ARM64/aarch64" section.
Basic build command
bash
DOCKER_BUILDKIT=1 docker build . \
--target vllm-openai \
--tag vllm/vllm-openai \
--file docker/DockerfileThe specifies that you are building the OpenAI-compatible server image. The environment variable enables BuildKit, which provides better caching and faster builds.
--target vllm-openaiDOCKER_BUILDKIT=1Build arguments and options
- — sets the number of parallel compilation jobs for building CUDA kernels. Useful for speeding up builds on multi-core systems.
--build-arg max_jobs=<N> - — controls CUDA compiler threads. Recommended to use a smaller value than
--build-arg nvcc_threads=<N>to avoid excessive memory usage.max_jobs - — if set to empty string, vLLM will detect and build only for the current GPU's compute capability. By default, vLLM builds for all GPU types for wider distribution.
--build-arg torch_cuda_arch_list=""
Using precompiled wheels to speed up builds
If you have not changed any C++ or CUDA kernel code, you can use precompiled wheels to significantly reduce Docker build time:
- Enable precompiled wheels: Add to your build command.
--build-arg VLLM_USE_PRECOMPILED="1" - How it works: By default, vLLM automatically finds the correct precompiled wheels from the Nightly Builds by using the merge-base commit with the upstream branch.
main - Specify a commit: To use wheels from a specific commit, add .
--build-arg VLLM_PRECOMPILED_WHEEL_COMMIT=<commit_hash>
Example with precompiled wheels and options for fast compilation:
bash
DOCKER_BUILDKIT=1 docker build . \
--target vllm-openai \
--tag vllm/vllm-openai \
--file docker/Dockerfile \
--build-arg max_jobs=8 \
--build-arg nvcc_threads=2 \
--build-arg VLLM_USE_PRECOMPILED="1"Building with optional dependencies (optional)
vLLM does not include optional dependencies (e.g., audio processing) in the pre-built image to avoid licensing issues. If you need optional dependencies, create a custom Dockerfile that extends the base image:
Example: adding audio optional dependencies
dockerfile
# NOTE: MAKE SURE the version of vLLM matches the base image!
FROM vllm/vllm-openai:0.11.0
# Install audio optional dependencies
RUN uv pip install --system vllm[audio]==0.11.0Example: using development version of transformers:
dockerfile
FROM vllm/vllm-openai:latest
# Install development version of Transformers from source
RUN uv pip install --system git+https://github.com/huggingface/transformers.gitBuild this custom Dockerfile with:
bash
docker build -t my-vllm-custom:latest -f Dockerfile .Then use it like any other vLLM image:
bash
docker run --rm --gpus all \
-p 8000:8000 \
--ipc=host \
my-vllm-custom:latest \
--model Qwen/Qwen2.5-1.5B-InstructBuilding for ARM64/aarch64
A Docker container can be built for ARM64 systems (e.g., NVIDIA Grace-Hopper and Grace-Blackwell). Use the flag :
--platform "linux/arm64"bash
DOCKER_BUILDKIT=1 docker build . \
--target vllm-openai \
--tag vllm/vllm-openai \
--file docker/Dockerfile \
--platform "linux/arm64"Note: Multiple modules must be compiled, so this process can take longer. Use build arguments like to speed up the process (ensure is substantially larger than ). Monitor memory usage, as parallel jobs can require significant RAM.
--build-arg max_jobs=8 --build-arg nvcc_threads=2max_jobsnvcc_threadsFor cross-compilation (building ARM64 on an x86_64 host), register QEMU user-static handlers first:
bash
docker run --rm --privileged multiarch/qemu-user-static --reset -p yesThen use the flag in your build command.
--platform "linux/arm64"Running your custom-built image
After building, run your image just like the pre-built image:
bash
docker run --rm --runtime nvidia --gpus all \
-v ~/.cache/huggingface:/root/.cache/huggingface \
--env "HF_TOKEN=$HF_TOKEN" \
-p 8000:8000 \
--ipc=host \
vllm/vllm-openai \
--model Qwen/Qwen2.5-1.5B-InstructReplace with the tag you specified during the build (e.g., ).
vllm/vllm-openaimy-vllm-custom:latestNote:is deprecated for most environments. Prefer--runtime nvidiawith NVIDIA Container Toolkit. Use--gpus ...only for legacy Docker configurations.--runtime nvidia
Common server flags
- — model to load (HF ID or local path)
--model <MODEL_ID> - — server port (default 8000 for OpenAI-compatible server)
--port <PORT> - — adjust verbosity
--log-level - You may pass additional after the image tag; see vLLM docs for tuning options.
engine_args
Testing the API
After the container starts, make a quick test request against the OpenAI-compatible endpoint:
bash
curl -s http://localhost:8000/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{"model":"Qwen/Qwen2.5-1.5B-Instruct","messages":[{"role":"user","content":"Who are you?"}],"max_tokens":128}'Security and operational notes
- Keep secret; prefer passing it via environment variables or a secret manager.
HF_TOKEN - For production, run behind a reverse proxy (Nginx) with TLS and authentication.
- Mount only necessary host paths into the container.
Troubleshooting
- Container can't access GPUs: ensure is installed and restart Docker.
nvidia-container-toolkit - Model download failures: check and network; mount cache directory to persist downloads.
HF_TOKEN - Memory / OOM errors: try a smaller model or add more GPU memory; check .
--shm-size - If the container fails with NCCL library path issues (rare): set per upstream guidance.
VLLM_NCCL_SO_PATH - Permission issues of current user with Docker: ensure your user is in the group or suggest user to add current user to
dockergroup manually following:docker
bash
# 1. Create docker group if it doesn't exist (may already exist on some systems)
sudo groupadd docker
# 2. Add current user to the docker group (replace $USER with your username if needed)
sudo usermod -aG docker $USER
# 3. Apply the new group membership (you may need to log out and log back in for this to take effect)
newgrp docker
# 4. Verify that the user is in the docker group (output should include docker)
groups $USER- Docker pull failed due to a network timeout connecting to Docker Hub: check the network connection and try again. If the issue persists, suggest and show the user how to use a mirror for Docker Hub.
- Error during downloading models from Hugging Face: check if the is passed to the container and is valid. Check if
HF_TOKENandHTTP_PROXYare passed to the container if the host is behind a proxy. Also, verify that the model ID is correct and that the model is public or accessible with the provided token.HTTPS_PROXY
References
- vLLM repository (docker/Dockerfile): https://github.com/vllm-project/vllm/tree/main/docker
- NVIDIA Container Toolkit: https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/latest/install-guide.html
- Up-to-date deployment instructions and troubleshooting: https://docs.vllm.ai/en/latest/deployment/docker/