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.
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
Same goes for the Rsync command, same syntax just different options. For beginners, I’ll recommend starting off with SCP.
Regards, KFSys
Click below to sign up and get $100 of credit to try our products over 60 days!
How are you connecting to the droplet? Using putty or ssh from command line?