Storage

Storage Quickstart

Learn how to use Supabase to store and serve files.

This guide shows the basic functionality of Supabase Storage. Find a full example application on GitHub.

Concepts

Supabase Storage consists of Files, Folders, and Buckets.

Files

Files can be any sort of media file. This includes images, GIFs, and videos. It is best practice to store files outside of your database because of their sizes. For security, HTML files are returned as plain text.

Folders

Folders are a way to organize your files (just like on your computer). There is no right or wrong way to organize your files. You can store them in whichever folder structure suits your project.

Buckets

Buckets are distinct containers for files and folders. You can think of them like "super folders". Generally you would create distinct buckets for different Security and Access Rules. For example, you might keep all video files in a "video" bucket, and profile pictures in an "avatar" bucket.

Create a bucket

You can create a bucket using the Supabase Dashboard. Since the storage is interoperable with your Postgres database, you can also use SQL or our client libraries. Here we create a bucket called "avatars":

  1. Go to the Storage page in the Dashboard.
  2. Click New Bucket and enter a name for the bucket.
  3. Click Create Bucket.

Upload a file

You can upload a file from the Dashboard, or within a browser using our JS libraries.

  1. Go to the Storage page in the Dashboard.
  2. Select the bucket you want to upload the file to.
  3. Click Upload File.
  4. Select the file you want to upload.

Download a file

You can download a file from the Dashboard, or within a browser using our JS libraries.

  1. Go to the Storage page in the Dashboard.
  2. Select the bucket that contains the file.
  3. Select the file that you want to download.
  4. Click Download.

Add security rules

To restrict access to your files you can use either the Dashboard or SQL.

  1. Go to the Storage page in the Dashboard.
  2. Click Policies in the sidebar.
  3. Click Add Policies in the OBJECTS table to add policies for Files. You can also create policies for Buckets.
  4. Choose whether you want the policy to apply to downloads (SELECT), uploads (INSERT), updates (UPDATE), or deletes (DELETE).
  5. Give your policy a unique name.
  6. Write the policy using SQL.