Reputation: 1099
I want to copy a folders/files from my local machine (MAC) to the docker container in Amazon Sagemaker .
I tried using scp commands to copy from local to sagemaker, for folder
scp -r -i <key> <local address> ec2-user@<ip>.compute-1.amazonws.com:/<address>
and then logged in to sagemaker and used `docker cp :/workspace/
I want to move a folder or file directly from my local machine (MAC) to amazon sagemaker docker container using only 1 terminal command. Is there a way to do that ?
Upvotes: 4
Views: 2567