Reputation: 311
Is it possible to access files on the guest's home directory from the host?
I'm running a Ubuntu box on a Windows machine.
Upvotes: 1
Views: 1536
Reputation: 1814
Synced folders is what you are looking for:
config.vm.synced_folder "host/dir", "/guset/home/dir"
See: https://www.vagrantup.com/docs/synced-folders/basic_usage.html
Upvotes: 3