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

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

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.
Hey friend,
Great question. I’m afraid there isn’t a way to deploy a snapshot onto a smaller (disk) droplet at this time. The partitioning is all part of the snapshot and we do not currently have any logic to override it.
With that said, copying Wordpress over isn’t actually that bad, so let’s think about doing the same (or equivalent result) thing just a different way. This is what I’d do:
First I’m going to make two assumptions:
So this is what I’m going to do then:
ssh-keygen and hit Enter until it stops prompting you./root/.ssh/id_rsa.pub from Droplet B to Droplet A’s /root/.ssh/authorized_keys file. Can do this by hand, copy/paste contents.mysqldump wordpress > wordpress.sqlcd /var/www/html && rsync -avz root@Droplet_A_IP:/var/www/html/ .cd /root && rsync -avz root@Droplet_A_IP:/root/wordpress.sql . && mysql wordpress < wordpress.sqlBoom, done. Droplet B is running an exact copy of Wordpress from Droplet A.
Jarland