Hello,
Do not share the project folder between people,.. if you put it in a
shared folder or dropbox, the 2nd person who does vagrant start will
create a new .vagrant folder
you can try this
VBoxManage list vms
Get the name of the box you are using, you are after the id
like:
alvaros-Mac-mini:precise64 alvarom$ VBoxManage list vms
"precise64_default_1431137908961_48289" {cbac9163-bd29-45bf-80bf-b5cace1ccce1}
Then, put that id on the following file:
cat .vagrant/machines/default/virtualbox/id
cbac9163-bd29-45bf-80bf-b5cace1ccce1
and test with a vagrant halt and then vagrant up
other option:
vagrant package -h
Usage: vagrant package [options] [name]
Options:
--base NAME Name of a VM in virtualbox to
package as a base box
--output NAME Name of the file to output
--include FILE... Additional files to package with the box
--vagrantfile FILE Vagrantfile to package with the box
-h, --help Print this help
vagrant package --base <name_as_in_virtualbox> --output my_awesome_box.box
That will create a box from that Virtualbox machine