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
14 changes: 14 additions & 0 deletions get-started/mcp-servers.mdx
Original file line number Diff line number Diff line change
@@ -1,37 +1,37 @@
---

Check warning on line 1 in get-started/mcp-servers.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

get-started/mcp-servers.mdx#L1

Try to keep the Coleman–Liau Index grade (9.25) below 9.

Check warning on line 1 in get-started/mcp-servers.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

get-started/mcp-servers.mdx#L1

Try to keep the Flesch reading ease score (62.80) above 70.
title: "Use Runpod's MCP servers"

Check warning on line 2 in get-started/mcp-servers.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

get-started/mcp-servers.mdx#L2

Spell out 'MCP', if it's unfamiliar to the audience.
sidebarTitle: "MCP servers"
description: "Connect AI tools to Runpod using the Model Context Protocol for infrastructure management and documentation access."
tag: "NEW"

Check warning on line 5 in get-started/mcp-servers.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

get-started/mcp-servers.mdx#L5

Spell out 'NEW', if it's unfamiliar to the audience.
---

Runpod provides two [Model Context Protocol (MCP)](https://modelcontextprotocol.io/docs/getting-started/intro) servers that connect AI tools and coding agents directly to Runpod:

- **[Runpod API MCP server](#runpod-api-mcp-server):** Manage Pods, endpoints, templates, volumes, and registries through the Runpod REST API. Requires a [Runpod API key](/get-started/api-keys).

Check warning on line 10 in get-started/mcp-servers.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

get-started/mcp-servers.mdx#L10

Spell out 'REST', if it's unfamiliar to the audience.
- **[Runpod docs MCP server](#runpod-docs-mcp-server):** Search Runpod documentation for features, code examples, and guides. No authentication required.

## Runpod API MCP server

Check warning on line 13 in get-started/mcp-servers.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

get-started/mcp-servers.mdx#L13

'Runpod API MCP server' should use sentence-style capitalization.

The Runpod API MCP server gives AI tools access to the [Runpod REST API](/api-reference/overview), letting you create and manage Pods, Serverless endpoints, templates, network volumes, and container registries through natural language.

Check warning on line 15 in get-started/mcp-servers.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

get-started/mcp-servers.mdx#L15

Spell out 'REST', if it's unfamiliar to the audience.

**Endpoint:** Available via npm package `@runpod/mcp-server`

Check warning on line 17 in get-started/mcp-servers.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

get-started/mcp-servers.mdx#L17

'Available' should be in lowercase.

**Source code:** [github.com/runpod/runpod-mcp](https://github.com/runpod/runpod-mcp)

**Authentication:** Requires a [Runpod API key](/get-started/api-keys)

Check warning on line 21 in get-started/mcp-servers.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

get-started/mcp-servers.mdx#L21

'Requires' should be in lowercase.

### Supported clients

- [Claude Code](#claude-code)
- [Codex CLI](#codex-cli)

Check warning on line 26 in get-started/mcp-servers.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

get-started/mcp-servers.mdx#L26

Use 'command-line tool' instead of 'CLI'.
- [Cursor](#cursor)
- [VS Code with Copilot](#vs-code-with-copilot)
- [Claude Desktop](#claude-desktop)
- [Windsurf](#windsurf)
- [Cline](#cline)
- [Gemini CLI](#gemini-cli)

Check warning on line 32 in get-started/mcp-servers.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

get-started/mcp-servers.mdx#L32

Use 'command-line tool' instead of 'CLI'.

### Claude Code

Check warning on line 34 in get-started/mcp-servers.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

get-started/mcp-servers.mdx#L34

'Claude Code' should use sentence-style capitalization.

```bash
claude mcp add runpod --scope user -e RUNPOD_API_KEY=your_api_key_here -- npx -y @runpod/mcp-server@latest
Expand All @@ -39,9 +39,9 @@

Replace `your_api_key_here` with your Runpod API key. The `--scope user` flag makes the server available across all your projects. Run `/mcp` inside Claude Code to verify the connection.

### Codex CLI

Check warning on line 42 in get-started/mcp-servers.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

get-started/mcp-servers.mdx#L42

Use 'command-line tool' instead of 'CLI'.

[Codex CLI](https://github.com/openai/codex) is OpenAI's terminal-based coding agent.

Check warning on line 44 in get-started/mcp-servers.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

get-started/mcp-servers.mdx#L44

Use 'command-line tool' instead of 'CLI'.

```bash
codex mcp add runpod --env RUNPOD_API_KEY=your_api_key_here -- npx -y @runpod/mcp-server@latest
Expand All @@ -49,7 +49,7 @@

### Cursor

Add the following to `.cursor/mcp.json` (project-level) or `~/.cursor/mcp.json` (global). This configuration works with both the Cursor IDE and the [Cursor Agent](https://cursor.com/docs/cli/mcp):

Check warning on line 52 in get-started/mcp-servers.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

get-started/mcp-servers.mdx#L52

Use parentheses judiciously.

Check warning on line 52 in get-started/mcp-servers.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

get-started/mcp-servers.mdx#L52

Use parentheses judiciously.

```json
{
Expand All @@ -65,9 +65,9 @@
}
```

### VS Code with Copilot

Check warning on line 68 in get-started/mcp-servers.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

get-started/mcp-servers.mdx#L68

'VS Code with Copilot' should use sentence-style capitalization.

1. Open the Command Palette (Ctrl+Shift+P on Windows/Linux or Cmd+Shift+P on macOS).

Check warning on line 70 in get-started/mcp-servers.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

get-started/mcp-servers.mdx#L70

Use parentheses judiciously.
2. Run **MCP: Add Server** and select **stdio**.
3. Enter the following details:
- **Name:** `Runpod`
Expand All @@ -76,7 +76,7 @@
4. Add environment variable `RUNPOD_API_KEY` with your Runpod API key.
5. Select **Global** or **Workspace** and click **Add**.

### Claude Desktop

Check warning on line 79 in get-started/mcp-servers.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

get-started/mcp-servers.mdx#L79

'Claude Desktop' should use sentence-style capitalization.

Add the following to your Claude Desktop config file:

Expand All @@ -101,7 +101,7 @@

### Windsurf

Edit `~/.codeium/windsurf/mcp_config.json` (or open from **Settings** > **Cascade** > **MCP Servers** > **View raw config**):

Check warning on line 104 in get-started/mcp-servers.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

get-started/mcp-servers.mdx#L104

Use parentheses judiciously.

```json
{
Expand Down Expand Up @@ -136,9 +136,9 @@
}
```

### Gemini CLI

Check warning on line 139 in get-started/mcp-servers.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

get-started/mcp-servers.mdx#L139

Use 'command-line tool' instead of 'CLI'.

Add to `~/.gemini/settings.json` (global) or `.gemini/settings.json` (project-level):

Check warning on line 141 in get-started/mcp-servers.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

get-started/mcp-servers.mdx#L141

Use parentheses judiciously.

Check warning on line 141 in get-started/mcp-servers.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

get-started/mcp-servers.mdx#L141

Use parentheses judiciously.

```json
{
Expand Down Expand Up @@ -179,6 +179,20 @@
- Cloud Type: SECURE
```

To attach an existing [network volume](/storage/network-volumes) at Pod creation, include its ID and mount path. The MCP server forwards these to the REST API's `networkVolumeId` and `volumeMountPath` fields on [`POST /pods`](/api-reference/pods/POST/pods):

Check warning on line 182 in get-started/mcp-servers.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

get-started/mcp-servers.mdx#L182

Use the Oxford comma in ', include its ID and mount path.'.

Check warning on line 182 in get-started/mcp-servers.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

get-started/mcp-servers.mdx#L182

Spell out 'REST', if it's unfamiliar to the audience.

```
Create a new Runpod Pod with the following specifications:
- Name: ml-training-pod
- Image: runpod/pytorch:2.1.0-py3.10-cuda11.8.0-devel-ubuntu22.04
- GPU Type: NVIDIA GeForce RTX 4090
- GPU Count: 1
- Network Volume ID: vol_abc123
- Volume Mount Path: /workspace
```

The network volume's data center constrains where the Pod can run, so pick a GPU type that is available in the volume's region.

Check warning on line 194 in get-started/mcp-servers.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

get-started/mcp-servers.mdx#L194

Use 'that's' instead of 'that is'.

```
Create a Runpod Serverless endpoint with the following configuration:
- Name: image-generation-endpoint
Expand All @@ -191,21 +205,21 @@
Stop the Pod named "ml-training-pod"
```

## Runpod docs MCP server

Check warning on line 208 in get-started/mcp-servers.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

get-started/mcp-servers.mdx#L208

'Runpod docs MCP server' should use sentence-style capitalization.

The Runpod docs MCP server provides access to Runpod's documentation knowledge base, making it easier to get answers about features and how to use them.

**Endpoint:** `https://docs.runpod.io/mcp`

**Authentication:** None required

Check warning on line 214 in get-started/mcp-servers.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

get-started/mcp-servers.mdx#L214

'None' should be in lowercase.

### Claude Code

Check warning on line 216 in get-started/mcp-servers.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

get-started/mcp-servers.mdx#L216

'Claude Code' should use sentence-style capitalization.

```bash
claude mcp add runpod-docs --scope user --transport http https://docs.runpod.io/mcp
```

### Codex CLI

Check warning on line 222 in get-started/mcp-servers.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

get-started/mcp-servers.mdx#L222

Use 'command-line tool' instead of 'CLI'.

```bash
codex mcp add runpod-docs --url https://docs.runpod.io/mcp
Expand All @@ -225,14 +239,14 @@
}
```

### VS Code with Copilot

Check warning on line 242 in get-started/mcp-servers.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

get-started/mcp-servers.mdx#L242

'VS Code with Copilot' should use sentence-style capitalization.

1. Open the Command Palette (Ctrl+Shift+P on Windows/Linux or Cmd+Shift+P on macOS).

Check warning on line 244 in get-started/mcp-servers.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

get-started/mcp-servers.mdx#L244

Use parentheses judiciously.
2. Run **MCP: Add Server** and select **HTTP**.
3. Enter `https://docs.runpod.io/mcp` as the URL and `Runpod Docs` as the name.
4. Select **Global** or **Workspace** and click **Add**.

### Claude Desktop

Check warning on line 249 in get-started/mcp-servers.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

get-started/mcp-servers.mdx#L249

'Claude Desktop' should use sentence-style capitalization.

1. Open **Settings** in Claude Desktop.
2. Navigate to **Connectors** and select **Add custom connector**.
Expand Down Expand Up @@ -267,9 +281,9 @@
}
```

### Gemini CLI

Check warning on line 284 in get-started/mcp-servers.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

get-started/mcp-servers.mdx#L284

Use 'command-line tool' instead of 'CLI'.

Add to `~/.gemini/settings.json`. Note that Gemini CLI uses `httpUrl` instead of `url`:

Check warning on line 286 in get-started/mcp-servers.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

get-started/mcp-servers.mdx#L286

Use 'command-line tool' instead of 'CLI'.

```json
{
Expand All @@ -283,7 +297,7 @@

### Other clients

For any other MCP-compatible client, use URL `https://docs.runpod.io/mcp` (HTTP transport).

Check warning on line 300 in get-started/mcp-servers.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

get-started/mcp-servers.mdx#L300

Use parentheses judiciously.

### Usage examples

Expand Down
4 changes: 4 additions & 0 deletions pods/manage-pods.mdx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---

Check warning on line 1 in pods/manage-pods.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

pods/manage-pods.mdx#L1

Try to keep the Flesch reading ease score (61.70) above 70.

Check warning on line 1 in pods/manage-pods.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

pods/manage-pods.mdx#L1

Try to keep the Coleman–Liau Index grade (9.78) below 9.
title: "Manage Pods"
description: "Create, start, stop, and terminate Pods using the Runpod console or CLI. Review setup, configuration, and operations guidance for Runpod Pods."

Check warning on line 3 in pods/manage-pods.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

pods/manage-pods.mdx#L3

Use 'stop', 'exit', 'cancel', or 'end' instead of 'terminate'.

Check warning on line 3 in pods/manage-pods.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

pods/manage-pods.mdx#L3

Use 'command-line tool' instead of 'CLI'.
---

import { MachineTooltip, TemplatesTooltip } from "/snippets/tooltips.jsx";

This page covers the core Pod management operations. For CLI usage, first [install the Runpod CLI](/runpodctl/overview) and configure your API key:

Check warning on line 8 in pods/manage-pods.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

pods/manage-pods.mdx#L8

Use 'command-line tool' instead of 'CLI'.

Check warning on line 8 in pods/manage-pods.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

pods/manage-pods.mdx#L8

Use 'command-line tool' instead of 'CLI'.

```sh
runpodctl config --apiKey RUNPOD_API_KEY
Expand All @@ -13,16 +13,16 @@

## Quick reference

| Action | Web UI | CLI |

Check warning on line 16 in pods/manage-pods.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

pods/manage-pods.mdx#L16

Use 'command-line tool' instead of 'CLI'.
|--------|-----|-----|
| **Deploy** | [Pods page](https://www.console.runpod.io/pods) → Deploy | `runpodctl pod create --name NAME --gpu-id "GPU" --image "IMAGE"` |
| **Start** | Expand Pod → Play icon | `runpodctl pod start POD_ID` |
| **Stop** | Expand Pod → Stop icon | `runpodctl pod stop POD_ID` |
| **Update** | Three-dot menu → Edit Pod | `runpodctl pod update POD_ID` |
| **Terminate** | Expand Pod → Trash icon | `runpodctl pod delete POD_ID` |

Check warning on line 22 in pods/manage-pods.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

pods/manage-pods.mdx#L22

Use 'stop', 'exit', 'cancel', or 'end' instead of 'Terminate'.
| **List** | [Pods page](https://www.console.runpod.io/pods) | `runpodctl pod list` |

## Deploy a Pod

Check warning on line 25 in pods/manage-pods.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

pods/manage-pods.mdx#L25

'Deploy a Pod' should use sentence-style capitalization.

<Tip>
Deploy preconfigured Pods from the [Runpod Hub](/hub/overview#deploy-as-a-pod) for quick setup.
Expand Down Expand Up @@ -95,9 +95,9 @@
</Tab>
</Tabs>

## Stop a Pod

Check warning on line 98 in pods/manage-pods.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

pods/manage-pods.mdx#L98

'Stop a Pod' should use sentence-style capitalization.

Stopping a Pod releases the GPU and preserves data in `/workspace` (volume disk). Container disk data is cleared.

Check warning on line 100 in pods/manage-pods.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

pods/manage-pods.mdx#L100

Use parentheses judiciously.

Check warning on line 100 in pods/manage-pods.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

pods/manage-pods.mdx#L100

In general, use active voice instead of passive voice ('is cleared').

<Warning>
You'll still be charged for [volume disk storage](/pods/storage/types#volume-disk) while stopped. Terminate the Pod if you don't need to retain your environment.
Expand All @@ -107,6 +107,10 @@
When using a [network volume](/storage/network-volumes), your `/workspace` data is preserved whether you stop or terminate the Pod.
</Tip>

<Warning>
Linux commands like `shutdown`, `poweroff`, and `halt` do not stop a Pod. Pods run as containers, not VMs, so these commands only affect the container's init process. The container may restart instead of stopping. To stop a Pod from inside itself, use `runpodctl pod stop $RUNPOD_POD_ID` from the CLI tab below, or call the REST API.
</Warning>

<Tabs>
<Tab title="Web">

Expand Down Expand Up @@ -139,9 +143,9 @@
</Tab>
</Tabs>

## Start a Pod

Check warning on line 146 in pods/manage-pods.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

pods/manage-pods.mdx#L146

'Start a Pod' should use sentence-style capitalization.

Resume a stopped Pod. Note: You may be allocated [zero GPUs](/pods/troubleshooting/zero-gpus) if capacity has changed.

Check warning on line 148 in pods/manage-pods.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

pods/manage-pods.mdx#L148

In general, use active voice instead of passive voice ('be allocated').

<Tabs>
<Tab title="Web">
Expand Down Expand Up @@ -170,7 +174,7 @@
</Tab>
</Tabs>

## Update a Pod

Check warning on line 177 in pods/manage-pods.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

pods/manage-pods.mdx#L177

'Update a Pod' should use sentence-style capitalization.

Modify an existing Pod's configuration, such as storage size, image, ports, or environment variables.

Expand Down Expand Up @@ -207,7 +211,7 @@
</Tabs>


## Terminate a Pod

Check warning on line 214 in pods/manage-pods.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

pods/manage-pods.mdx#L214

'Terminate a Pod' should use sentence-style capitalization.

Check warning on line 214 in pods/manage-pods.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

pods/manage-pods.mdx#L214

Use 'stop', 'exit', 'cancel', or 'end' instead of 'Terminate'.

<Danger>
Terminating permanently deletes all data not stored in a [network volume](/storage/network-volumes). Export important data first.
Expand Down Expand Up @@ -244,8 +248,8 @@

Pods provide two log types:

- **Container logs**: Application output (stdout)

Check warning on line 251 in pods/manage-pods.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

pods/manage-pods.mdx#L251

Use 'app' instead of 'Application'.

Check warning on line 251 in pods/manage-pods.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

pods/manage-pods.mdx#L251

Use parentheses judiciously.
- **System logs**: Pod lifecycle events (startup, shutdown, errors)

Check warning on line 252 in pods/manage-pods.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

pods/manage-pods.mdx#L252

Use parentheses judiciously.

Access logs from the [Pods page](https://www.console.runpod.io/pods) by expanding your Pod and clicking **Logs**.

Expand All @@ -254,7 +258,7 @@
| Issue | Solution |
|-------|----------|
| **Zero GPUs on restart** | See [Zero GPU Pods](/pods/troubleshooting/zero-gpus) |
| **Pod stuck initializing** | Check logs for command errors; ensure you have an idle job (e.g., `sleep infinity`) if using SSH |

Check warning on line 261 in pods/manage-pods.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

pods/manage-pods.mdx#L261

Use semicolons judiciously.

Check warning on line 261 in pods/manage-pods.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

pods/manage-pods.mdx#L261

Use 'for example' instead of 'e.g.'.
| **Docker Compose not working** | Not supported. Use a [custom template](/pods/templates/overview) with your dependencies baked in. |

Need help? [Contact support](https://www.runpod.io/contact).
Loading