---
sidebar_position: 17
---

> ## Documentation Index
> Fetch the complete documentation index at: https://docs.lium.io/llms.txt
> Use this file to discover all available pages before exploring further.

# `lium rm`

Remove / stop pods.

```bash
lium rm POD [POD...] [OPTIONS]
```

## Arguments

- `POD` — Pod name(s) or `all`.

## Options

| Flag | Effect |
|------|--------|
| `--force, -f` | Skip the confirmation prompt |
| `--keep-volumes` | Preserve attached volumes for re-use |

## Examples

```bash
lium rm my-pod                  # Remove a single pod
lium rm pod1 pod2 pod3          # Remove several
lium rm all                     # Remove every pod you own
lium rm my-pod --force          # No confirmation
```

## See also

- [`lium schedules`](./schedules.md) — view / cancel scheduled removals (created via `lium up --ttl`)
- [`lium volumes`](./volumes.md) — manage detached volumes
