Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion docker/Dockerfile.stable.sglang
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.stable.vllm
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
18 changes: 9 additions & 9 deletions docs/start/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,15 @@ Upon base image, the following packages are added:

Latest docker file:

- `Dockerfile.stable.vllm <https://github.com/volcengine/verl/blob/main/docker/Dockerfile.stable.vllm>`_
- `Dockerfile.stable.sglang <https://github.com/volcengine/verl/blob/main/docker/Dockerfile.stable.sglang>`_
- `Dockerfile.stable.vllm <https://github.com/verl-project/verl/blob/main/docker/Dockerfile.stable.vllm>`_
- `Dockerfile.stable.sglang <https://github.com/verl-project/verl/blob/main/docker/Dockerfile.stable.sglang>`_

All pre-built images are available in dockerhub: `verlai/verl <https://hub.docker.com/r/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 <https://github.com/volcengine/verl/blob/main/.github/workflows/vllm.yml>`_
- `.github/workflows/sgl.yml <https://github.com/volcengine/verl/blob/main/.github/workflows/sgl.yml>`_
- `.github/workflows/vllm.yml <https://github.com/verl-project/verl/blob/main/.github/workflows/vllm.yml>`_
- `.github/workflows/sgl.yml <https://github.com/verl-project/verl/blob/main/.github/workflows/sgl.yml>`_


Installation from Docker
Expand All @@ -84,15 +84,15 @@ 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
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

While this change correctly updates the repository URL, the fix is incomplete. There are several other occurrences of the old URL https://github.com/volcengine/verl that still need to be updated to https://github.com/verl-project/verl to ensure consistency and prevent confusion.

Please update the URL in the following locations as well:

In docs/start/install.rst:

  • Line 57
  • Line 58
  • Line 64
  • Line 65
  • Line 107
  • Line 211
  • Line 239

In docker/Dockerfile.stable.vllm:

  • Line 102

In docker/Dockerfile.stable.sglang:

  • Line 39

A global search-and-replace for volcengine/verl with verl-project/verl across the repository would be the best approach to ensure all references are updated.

pip3 install --no-deps -e .

[Optional] If you hope to switch between different frameworks, you can install verl with the following command:

.. 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]

Expand All @@ -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 <https://github.com/volcengine/verl/blob/v0.6.0/docker/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 <https://github.com/verl-project/verl/blob/v0.6.0/docker/verl0.6-cu128-torch2.8.0-fa2.7.4/Dockerfile.base>`_ .


Pre-requisites
Expand Down Expand Up @@ -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 .

Expand Down Expand Up @@ -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 <https://yushengsu-thu.github.io/>`_.

Find the docker for AMD ROCm: `docker/Dockerfile.rocm <https://github.com/volcengine/verl/blob/main/docker/Dockerfile.rocm>`_
Find the docker for AMD ROCm: `docker/Dockerfile.rocm <https://github.com/verl-project/verl/blob/main/docker/Dockerfile.rocm>`_
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

.. code-block:: bash
Expand Down