You could add persistent storage to your resources, so you can preserve your data between deployments. This persistent storage could be different in different types of Destinations.Documentation Index
Fetch the complete documentation index at: https://coollabstechnologiesbt.mintlify.dev/docs/llms.txt
Use this file to discover all available pages before exploring further.
Docker Engine
If you are using Docker Engine, persistent storage could be avolume or a bind mount (a file/directory from the host system - your server).
Volume
To create a volume, you need to define:Nameof the volume.Destination Pathwhere the volume will be mounted inside the container.
Bind Mount
To create a bind mount, you need to define:Nameof the volume, which will be used as a reference.Source Pathfrom the host system. No docker volume created in this case.Destination Pathwhere the volume will be mounted inside the container.