Question
How to properly configure persistent volumes on dokku with rails?
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"
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.
×