Report this

What is the reason for this report?

How to copy yml file from local system to droplets ?

Posted on July 8, 2020

Hi, I am new to docker and in learning phase. I want to copy the yml file from my system to droplets and run that file on the droplets node so that i can test some swarm functionality.

How to achieve it and what is the best practice to do it .

Thanks.



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 @skriss03,

I’ll recommend using either rsync or scp via your terminal to copy the file over. It’s simple and it takes less than 10 seconds.

The scp command syntax take the following form:

scp [OPTION] [user@]SRC_HOST:]file1 [user@]DEST_HOST:]file2
  • OPTION - scp options such as cipher, ssh configuration, ssh port, limit, recursive copy …etc.
  • [user@]SRC_HOST:]file1 - Source file.
  • [user@]DEST_HOST:]file2 - Destination file Local files should be specified using an absolute or relative path, while remote file names should include a user and host specification.

Same goes for the Rsync command, same syntax just different options. For beginners, I’ll recommend starting off with SCP.

Regards, KFSys

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.