vagrant box add: where does .box file get downloaded to?
Posted
by
Calvin Cheng
on Stack Overflow
See other posts from Stack Overflow
or by Calvin Cheng
Published on 2012-04-14T17:25:58Z
Indexed on
2012/04/14
17:28 UTC
Read the original article
Hit count: 227
vagrant
What actually happens to the .box file (which according to the docs is simply a vbox image in tar form, in a particular format) after the first command
vagrant box add lucid32 http://files.vagrantup.com/lucid32.box
is executed?
I can't seem to find the filesystem location of lucid32.box after the download has successfully completed...
I am aware it doesn't really matter as
vagrant init lucid32
vagrant up
vagrant ssh
will get me into the vm irregardless.
But I am curious where .box is located.
© Stack Overflow or respective owner