如何在Vagrant环境中将文件从guest虚拟机复制到主机?
我知道有synced_folders,但这不适用于darwin来宾。 我需要将构建结果从guest虚拟机复制到主机,理想情况下使用vagrant配置脚本,因为我的所有其他内容都在那里发生。
VM是VirtualBox。
答案 0 :(得分:1)
从您的主机使用此命令 -
scp -P <vagrant guest ssh port number> vagrant@localhost:/path/to/source/file /path/to/destination/file
“vagrant guest ssh port number”是ssh从host到guest的转发端口,你可以从vagrant up命令的输出中找到它。