Persistent Storage
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.
Docker Engine​
If you are using Docker Engine, persistent storage could be a volume 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.The base directory inside the container is
/app. So if you need to store your files understoragedirectory, you need to define/app/storageas the destination path.To prevent storage overlapping between resources, Coolify automatically adds the resource's UUID to the volume name.
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.The base directory inside the container is
/app. So if you need to store your files understoragedirectory, you need to define/app/storageas the destination path.
Share file between more than one container? NOT RECOMMENDED.
If you mount the same file to more than one container, you will need to make sure that the proper file locking mechanism is implemented in your resources.