Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add doc reference for "Advanced Configurations" yaml #4523

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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
3 changes: 3 additions & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
'sphinx_design',
'myst_parser',
'notfound.extension',
'sphinx.ext.autosectionlabel',
]

intersphinx_mapping = {
Expand Down Expand Up @@ -166,6 +167,8 @@ def render_svg_logo(path):

googleanalytics_id = 'G-92WF3MDCJV'

autosectionlabel_prefix_document = True


def setup(app):
app.connect('builder-inited',
Expand Down
8 changes: 4 additions & 4 deletions docs/source/examples/docker-containers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ For example, to run a HuggingFace TGI serving container:
# `docker run` is blocking, so any commands after it
# will NOT be run inside the container.

Private Registries
^^^^^^^^^^^^^^^^^^
Private Registries for Tasks
^^^^^^^^^^^^^^^^^^^^^^^^^^^^

When using this mode, to access Docker images hosted on private registries,
simply add a :code:`setup` section to your task YAML file to authenticate with
Expand Down Expand Up @@ -174,8 +174,8 @@ Any GPUs assigned to the task will be automatically mapped to your Docker contai
to limitations in the RunPod API, so ensure that you choose a container with a
default entrypoint (i.e. :code:`/bin/bash`).

Private Registries
^^^^^^^^^^^^^^^^^^
Private Registries for Runtime Environments
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

.. note::

Expand Down
Loading
Loading