How to stop vagrant from having to re-download the image on every "vagrant up" on Windows?

2.2k Views Asked by At

When I run vagrant up on Windows the first time, I expect it to download then cache the box. But if I run vagrant halt followed by vagrant up I end up having to wait 15 minutes for the machine to be downloaded and re-assembled; When I ran vagrant box list, it states that the base box for it is listed there, so what else do I have to do to use the cache?

    default: Downloading: https://atlas.hashicorp.com/ubuntu/boxes/trusty64/vers
ions/20150902.0.0/providers/virtualbox.box
    default: Progress: 94% (Rate: 301k/s, Estimated time remaining: 0:01:20))

I remember reading somewhere in the documentation that there's a config.vm.box_check_update that will cause it to check for updated versions of the current box on every vagrant up but I don't see it listed in the Vagrantfile for wordpress-vvv.

0

There are 0 best solutions below