Persistent Storage
Attach a persistent volume to keep state across restarts and redeploys.
Last updated: May 12, 2026
Persistent Storage
If your service needs to keep state between restarts (uploads, a SQLite file, etc.), open the service and click Add Persistent Volume in the volumes card. Fill in:
- Name: lowercase identifier for the volume (e.g.
data). - Mount Path: absolute path inside the container where the volume is mounted (e.g.
/var/lib/postgresql/data).
Volumes are currently fixed at 10 GiB. lowcloud provisions managed block storage in your project and re-attaches it on every redeploy.
Services with persistent volumes are pinned to a single replica. To scale horizontally, move state to a database or object storage.