From 9f26697d6a6ac18686c8b97334f0a06a757f3fb5 Mon Sep 17 00:00:00 2001 From: zijiexia <37504505+zijiexia@users.noreply.github.com> Date: Sat, 16 May 2026 11:17:51 -0700 Subject: [PATCH] [Docs] Update DeepSeek V4 cookbook to use the latest docker image (#25410) --- .../autoregressive/DeepSeek/DeepSeek-V4.mdx | 47 +++---------------- 1 file changed, 6 insertions(+), 41 deletions(-) diff --git a/docs_new/cookbook/autoregressive/DeepSeek/DeepSeek-V4.mdx b/docs_new/cookbook/autoregressive/DeepSeek/DeepSeek-V4.mdx index ffbf6b9a4..10a1136d2 100644 --- a/docs_new/cookbook/autoregressive/DeepSeek/DeepSeek-V4.mdx +++ b/docs_new/cookbook/autoregressive/DeepSeek/DeepSeek-V4.mdx @@ -66,48 +66,13 @@ SGLang offers multiple installation methods. Choose based on your hardware platf Please refer to the [official SGLang installation guide](../../../docs/get-started/install) for installation instructions. -**Docker Images by Hardware Platform:** +**Docker Image:** Use `lmsysorg/sglang:latest` for all supported hardware platforms (B300 / B200 / GB200 / GB300 / H200 / H100). - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Hardware PlatformDocker Image
NVIDIA B300lmsysorg/sglang:deepseek-v4-b300
NVIDIA B200lmsysorg/sglang:deepseek-v4-blackwell
NVIDIA GB200lmsysorg/sglang:deepseek-v4-grace-blackwell
NVIDIA GB300lmsysorg/sglang:deepseek-v4-grace-blackwell
NVIDIA H200lmsysorg/sglang:deepseek-v4-hopper
NVIDIA H100lmsysorg/sglang:dev
+```bash Command +docker pull lmsysorg/sglang:latest +``` -For how to actually launch one of these images, see [Install → Method 3: Using Docker](../../../docs/get-started/install#method-3-using-docker). A minimal example (substitute the image tag for your platform and the inner `sglang serve ...` with whatever the [command generator](#3-model-deployment) below produces): +For how to actually launch the image, see [Install → Method 3: Using Docker](../../../docs/get-started/install#method-3-using-docker). A minimal example (substitute the inner `sglang serve ...` with whatever the [command generator](#3-model-deployment) below produces): ```bash Command docker run --gpus all \ @@ -116,7 +81,7 @@ docker run --gpus all \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=" \ --ipc=host \ - lmsysorg/sglang:deepseek-v4-blackwell \ + lmsysorg/sglang:latest \ sglang serve ```