Perhaps you can do this using the --base argument to the vagrant package .
First find the name of the virtual machine in the VirtualBox GUI. Let's say this is called "Windows", you release:
vagrant package --base Windows --output /path/to/windows.box
This .box file will be your base field. You can install it locally using
vagrant box install /path/to/windows.box
Alternatively, you can make it available on the server and put its URL in the config.box_url parameter in the Vagrantfile .
cassianoleal
source share