How to Create a Network File Storage Share

Last verified 25 Jun 2026

Network File Storage is a fully managed, POSIX-compliant file storage solution built for demanding workloads like AI/ML pipelines, containerized applications, and DigitalOcean Kubernetes (DOKS) clusters. It provides scalable, high-throughput shared storage that simplifies storage management for distributed applications.

To create and use a new Network File Storage (NFS) share, you need to create the share itself, and then mount it on a Droplet or DOKS cluster. NFS shares attach to one or more VPC networks in the same region, and can be mounted by Droplets and DOKS clusters in any of the share’s attached VPC networks. Create a VPC network for the NFS share in one of the supported datacenters before you begin.

Create a Share Using Automation

How to Create a Share Using the DigitalOcean API

Create a personal access token and save it for use with the API.

cURL

Send a POST request to https://api.digitalocean.com/v2/nfs.

Using cURL:

curl -X POST \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $DIGITALOCEAN_TOKEN" \
  -d '{"name": "sammy-share-drive", "size_gib": 1024, "region": "atl1", "vpc_ids": ["796c6fe3-2a1d-4da2-9f3e-38239827dc91"]}' \
  "https://api.digitalocean.com/v2/nfs"

Create a Share Using the Control Panel

To create a share from the control panel, click the Create menu, then click Network File Storage.

On the Create a Network File Storage Share page select your options for the new share:

  • Choose a datacenter region: Select the region to create the share in.
  • VPC network: Select the VPC network to attach the share to. You can attach the share to additional VPC networks after you create it. All Droplet and DOKS resources must be in one of the share’s VPC networks to access it.
  • Choose a storage tier: Select the storage tier for the share. Standard provides up to 1 Gbps throughput for general-purpose workloads. High Performance provides higher throughput that scales with share size. See NFS features for a full comparison.
  • Choose a storage size: Enter the share size in GiB. Standard Tier shares must be at least 50 GiB. High Performance Tier shares must be at least 500 GiB.
  • Finalize: Enter a name for your share. Names must be lowercase letters and can contain dashes. Names must be unique within your team account.

In the Summary section, review the selected configuration, then click Create Network File Storage to create your share.

The Network File Share overview page loads, where all of your NFS shares are listed in a table with the following details:

To use the share, you need to mount it on a Droplet or Kubernetes cluster. You can view mounting instructions from the menu next to the share. Click the menu, then click Mounting Instructions to open a window with a mounting guide that has step-by-step instructions, preconfigured with the share’s address, for connecting your share to a Droplet or Kubernetes cluster.

For further information read How to Mount a Network File Storage Share.

We can't find any results for your search.

Try using different keywords or simplifying your search terms.