When I create a virtual machine through vagrant, and ssh into the machine the "/vagrant" folder does not exist.
Note there is no mention of "Mounting Shared Folders" when the machine boots up. The Vagrantfile is the standard file created from "vagrant init".
Any help on to why this may be happening would be much appreciated. Thanks.
make sure that in your Vagrantfile you dont have something
config.vm.synced_folder ".", "/vagrant", disabled: true
Also if you dont, force the default /vagrant
folder to be shared
config.vm.synced_folder ".", "/vagrant"
when booting your VM, you should have logs like
==> default: Mounting shared folders...
default: /vagrant => /Users/.....path to project directory
If nothing works, 2 things you can explore:
vagrant up --debug
to see whats happening after Mounting shared folders
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With