Hello! I do have a network drive that is focused on storage, much more than my OS server box, can I place the files container in there? If so, any pointers?
Appwrite stores data in volumes. By default, the volumes are managed by docker so they are stored in docker's system folder. It is possible to specify options for the volume such that the path is your network drive. If you do this, I highly recommend using a docker-compose.override.yml
file to minimize changes to the docker-compose.yml
file installed by Appwrite. This will make upgrades easier in the future so that you can use the upgrade command as per our docs.
For example: https://stackoverflow.com/questions/36387032/how-to-set-a-path-on-host-for-a-named-volume-in-docker-compose-yml (this doesn't use a docker-compose.override.yml file, though)
Thanks! Will give it a go
Recommended threads
- Having issues with login via CLI
``` ~/appwrite appwrite login --endpoint https://localhost/v1 --verbose ? Enter your email myvalidemai...
- Send Email Verification With REST
I am using REST to create a user on the server side after receiving form data from the client. After the account is successfully created i wanted to send the v...
- Use different email hosts for different ...
Hello, I have 2 projects and i want to be able to set up email templates in the projects. Both projects will have different email host configurations. I see ...