Report this

What is the reason for this report?

How to properly configure persistent volumes on dokku with rails?

Posted on June 2, 2015

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!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

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.

https://github.com/dyson/dokku-persistent-storage/issues/1

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.