By sanson
How to properly configure persistent volumes on dokku/rails?
I have apps running nicely with dokku and ruby on rails. But in every deployment my uploaded files are deleted.
What is the best way to configure the correct path (“public/images” folder of rails) that I don’t want destroy after deploy?
I’m running (without success so far):
dokku docker-options:add app_name run "-v /home/uploads/app_name:/home/dokku/app_name/public/images"
dokku docker-options:add app_name deploy "-v /home/uploads/app_name:/home/dokku/app_name/public/images"
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Note that as of Dokku 0.5.0, we now have a persistent storage plugin built-in.
I’ve found the solution.
Just replace the path with /home/uploads/app_name:/app/public/images
or any other location like /var/www/app_name/public/images:/app/public/images
On the left side (/var/www/app_name/public/images) is the path where dokku will save files on the system.
On the right (/app/public/images) indicates which folder (inside rails app) will be saved from.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.