From f0089e48eaab8ceede44f8e8df8ae43579b3991c Mon Sep 17 00:00:00 2001 From: Denis Kuznedelev Date: Wed, 11 Feb 2026 18:00:46 +0300 Subject: [PATCH 1/4] Update installation instruction to the actual repo link --- docs/start/install.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/start/install.rst b/docs/start/install.rst index 2686713fbbe..fded010993f 100644 --- a/docs/start/install.rst +++ b/docs/start/install.rst @@ -84,7 +84,7 @@ After pulling the desired Docker image and installing desired inference and trai .. code:: bash # install the nightly version (recommended) - git clone https://github.com/volcengine/verl && cd verl + git clone https://github.com/verl-project/verl && cd verl pip3 install --no-deps -e . [Optional] If you hope to switch between different frameworks, you can install verl with the following command: @@ -92,7 +92,7 @@ After pulling the desired Docker image and installing desired inference and trai .. code:: bash # install the nightly version (recommended) - git clone https://github.com/volcengine/verl && cd verl + git clone https://github.com/verl-project/verl && cd verl pip3 install -e .[vllm] pip3 install -e .[sglang] From 2df58881a0a3ccff766ddf8dfe6191f1de656bb6 Mon Sep 17 00:00:00 2001 From: Denis Kuznedelev Date: Wed, 11 Feb 2026 18:29:51 +0300 Subject: [PATCH 2/4] Fixed links in other places --- docs/start/install.rst | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/start/install.rst b/docs/start/install.rst index fded010993f..a83a30535b0 100644 --- a/docs/start/install.rst +++ b/docs/start/install.rst @@ -54,15 +54,15 @@ Upon base image, the following packages are added: Latest docker file: -- `Dockerfile.stable.vllm `_ -- `Dockerfile.stable.sglang `_ +- `Dockerfile.stable.vllm `_ +- `Dockerfile.stable.sglang `_ All pre-built images are available in dockerhub: `verlai/verl `_. For example, ``verlai/verl:sgl055.latest``, ``verlai/verl:vllm011.latest``. You can find the latest images used for development and ci in our github workflows: -- `.github/workflows/vllm.yml `_ -- `.github/workflows/sgl.yml `_ +- `.github/workflows/vllm.yml `_ +- `.github/workflows/sgl.yml `_ Installation from Docker @@ -104,7 +104,7 @@ We recommend to use docker images for convenience. However, if your environment .. note:: - - Dockerfile provides more details than this installation instructions. You can find examples in each Dockerfile, for example `verl0.6-cu128-torch2.8.0-fa2.7.4 Dockerfile.base `_ . + - Dockerfile provides more details than this installation instructions. You can find examples in each Dockerfile, for example `verl0.6-cu128-torch2.8.0-fa2.7.4 Dockerfile.base `_ . Pre-requisites @@ -208,7 +208,7 @@ own post-training jobs. .. code:: bash - git clone https://github.com/volcengine/verl.git + git clone https://github.com/verl-project/verl.git cd verl pip install --no-deps -e . @@ -236,7 +236,7 @@ Install with AMD GPUs - ROCM kernel support When you run on AMD GPUs (MI300) with ROCM platform, you cannot use the previous quickstart to run verl. You should follow the following steps to build a docker and run it. If you encounter any issues in using AMD GPUs running verl, feel free to contact me - `Yusheng Su `_. -Find the docker for AMD ROCm: `docker/Dockerfile.rocm `_ +Find the docker for AMD ROCm: `docker/Dockerfile.rocm `_ :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: .. code-block:: bash From d430b953d31c8e4e8cf3814aedf7033ec7bbd030 Mon Sep 17 00:00:00 2001 From: Denis Kuznedelev Date: Wed, 11 Feb 2026 18:36:38 +0300 Subject: [PATCH 3/4] Update Dockerfile.stable.vllm --- docker/Dockerfile.stable.vllm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile.stable.vllm b/docker/Dockerfile.stable.vllm index 158eccac580..f5c6a89310b 100644 --- a/docker/Dockerfile.stable.vllm +++ b/docker/Dockerfile.stable.vllm @@ -99,7 +99,7 @@ RUN pip install -U git+https://github.com/ISEEKYAN/mbridge.git RUN pip install --no-deps git+https://github.com/NVIDIA/Megatron-LM.git@core_v0.15.0 -RUN pip install git+https://github.com/volcengine/verl.git@v0.6.0 && \ +RUN pip install git+https://github.com/verl-project/verl.git@v0.6.0 && \ pip uninstall -y verl RUN apt-get update && apt-get install -y curl \ From d4e894fcb5fc2e378b826aaf419981705a8796c7 Mon Sep 17 00:00:00 2001 From: Denis Kuznedelev Date: Wed, 11 Feb 2026 18:36:56 +0300 Subject: [PATCH 4/4] Update Dockerfile.stable.sglang --- docker/Dockerfile.stable.sglang | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile.stable.sglang b/docker/Dockerfile.stable.sglang index 7b637ac87e4..513d5e1d38c 100644 --- a/docker/Dockerfile.stable.sglang +++ b/docker/Dockerfile.stable.sglang @@ -36,7 +36,7 @@ RUN pip install -U git+https://github.com/ISEEKYAN/mbridge.git RUN pip install --no-deps --no-cache-dir git+https://github.com/NVIDIA/Megatron-LM.git@core_v0.15.0 -RUN pip install git+https://github.com/volcengine/verl.git@v0.6.0 && \ +RUN pip install git+https://github.com/verl-project/verl.git@v0.6.0 && \ pip uninstall -y verl # avoid cudnn9.10&torch2.9.1 bug