Portabase Logo
Portabase DashboardUsage (How-to)Storage

Local Storage

Store your backups directly on the dashboard server.

By default, Portabase is configured to use Local Storage. This means that backups sent by your agents are stored on the disk of the machine where the dashboard is running.

This method is ideal for:

  • Testing and discovery.
  • Small infrastructures.
  • Using a network mount (NFS, EFS) already attached to the server.

Data Persistence

If you are using Docker, it is crucial to use a volume to ensure your backups are not lost when the container is restarted or updated.

The default docker-compose.yml provided by the CLI already includes a volume for the data folder:

docker-compose.yml
services:
  portabase:
    # ...
    volumes:
      - portabase-data:/data

Backups are stored inside /data/private/backups.

On this page