> For the complete documentation index, see [llms.txt](https://ai-docs.fptcloud.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ai-docs.fptcloud.com/fpt-gpu-cloud/gpu-container/tutorials/how-to-manage-storage.md).

# How to Manage storage?

#### Persistent Disk

GPU Container provides High-Performance Storage (HPS) remaining for the duration of a container’s life. It functions similarly to a hard disk, allowing you to store data that needs to be retained even if the container is stopped.

Key characteristics:

* Available until the container is deleted permanently.
* Prevent data loss by storing data, models, or files that need to be preserved across container restarts or reconfigurations.

#### Temporary Disk

Temporary disk (NVMe) is a type of storage that provides temporary storage for a container. Any data stored on the temporary disk will be lost when the container is stopped or deleted so make sure to back up important data before shutting down your container.

#### Storage type comparision

|                      | **Temporary Disk**                              | **Persistent Disk**                            |
| -------------------- | ----------------------------------------------- | ---------------------------------------------- |
| **Data persistence** | Lost on stop/ restart                           | Retained until container deletion              |
| **Lifecycle**        | Tied directly to the container’s active session | Tied to the container’s lease period           |
| **Performance**      | Fastest (locally attached)                      | Reliable, generally slower than temporary disk |
| **Capacity**         | Fixed according to the selected GPU instance    | Selectable at creation                         |
| **Cost**             | FREE                                            | Refer to ai.fptcloud.com/pricing               |
| **Best for**         | Temporary session data, cache                   | Persistent application data, models, datasets  |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://ai-docs.fptcloud.com/fpt-gpu-cloud/gpu-container/tutorials/how-to-manage-storage.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
