Easiest way to copy a single file from host to Vagrant guest?

前端 未结 19 1730
暖寄归人
暖寄归人 2020-12-22 15:15

I have a use case where I occasionally want to copy a single file from my host machine to the Vagrant guest.

I don\'t want to do so via traditional provisioners (Pup

19条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-22 15:37

    The best ans for me is to write the file / directory(to be copied) to the vagrant file directory, now any file present there is available to vagrant in path /vagrant.

    That's it, no need of scp or any other methods,

    similarly you can copy any file from VM to host by pasting in /vagrant directory.

提交回复
热议问题