Where does Vagrant download its .box files to?

前端 未结 8 2068
误落风尘
误落风尘 2020-12-07 06:29

What happens to the .box file after the following command is executed?

vagrant box add lucid32 http://files.vagrantup.com/lucid32.box

I can

8条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-07 07:20

    On Mac/Linux System, the successfully downloaded boxes are located at:

    ~/.vagrant.d/boxes
    

    and unsuccessful boxes are located at:

    ~/.vagrant.d/tmp
    

    On Windows systems it is located under the Users folder:

    C:\Users\%userprofile%\.vagrant.d\boxes
    

    Hope this will help. Thanks

提交回复
热议问题