I had someone build and deploy a project inside of a droplet. I realise that I do not have a backup of the files.
How can I take a copy of the files from the droplet? I have not worked with droplets before, so I am unaware of the process
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.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.
Hello, @lindymills
It’s pretty easy. You can use scp or rsync in order to do that.
To transfer a file from a remote machine to your local machine, run the following command:
you need to change the username and the IP address. To scp to a different port use:
Like scp, rsync is used to copy files either to or from a remote host, or locally on the current host.
To use rsync on different port:
Let me know if you have any questions.
Regards, Alex