From eaf6dfda9ff1027cf90dd032dcae67f814507830 Mon Sep 17 00:00:00 2001 From: cblmemo Date: Mon, 26 Aug 2024 21:00:19 -0700 Subject: [PATCH] add runpod explanation --- docs/source/examples/docker-containers.rst | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/docs/source/examples/docker-containers.rst b/docs/source/examples/docker-containers.rst index 88d314828ea..408a53a6185 100644 --- a/docs/source/examples/docker-containers.rst +++ b/docs/source/examples/docker-containers.rst @@ -163,9 +163,12 @@ Any GPUs assigned to the task will be automatically mapped to your Docker contai .. note:: - When used as a runtime environment, the container's entrypoint will be - override by :code:`/bin/bash`. If you need to run a specific command, you can - do so in the :code:`setup` and :code:`run` sections of the task YAML file. + Using a container with a customized entrypoint as a runtime environment is + supported, with the container's entrypoint being overridden by :code:`/bin/bash`. + Specific commands can be executed in the :code:`setup` and :code:`run` sections + of the task YAML file. However, this approach is not compatible with RunPod due + to limitations in the RunPod API, so ensure that you choose a container with a + default entrypoint (i.e. :code:`/bin/bash`). Private Registries ^^^^^^^^^^^^^^^^^^