Report this

What is the reason for this report?

Docker Compose Bind Mount or Volume with DO Volume

Posted on October 30, 2020

https://docs.docker.com/storage/ says “Bind Mounts” are inferior to “Volumes”. But volumes run on the host machine’s disk, not the DO Volume.

Changing the Docker “data root” could move all things Docker to the DO Volume, but I worry about a) persisting unnecessary data and b) running two hosts from the same data root.

https://stackoverflow.com/questions/36014554/how-to-change-the-default-location-for-docker-create-volume-command

What’s the best way to persist a docker-compose.yml app’s data on a DO volume?

Thank you!



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.

Hi there @digitalocean457,

One option would be to follow the steps here on how to attach DigitalOcean Block Storage to Docker container:

https://www.digitalocean.com/community/questions/how-to-attach-digitalocean-block-storage-to-docker-container

The main thing to consider in this case is that block storage can only be mounted to 1 Droplet at a time. If you have a docker swarm and you need to mount the volume to multiple droplets, as mentioned by one of the users in that question, you could use GlusterFS as a replacement solution instead.

Hope that this helps! Regards, Bobby

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.