Fábio Queluci
Fábio Queluci

Reputation: 311

Share home directory with host using Vagrant

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

Answers (1)

Chananel P
Chananel P

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

Related Questions