diff --git a/website/source/docs/getting-started/boxes.html.md b/website/source/docs/getting-started/boxes.html.md index 376b58769..a47e4095a 100644 --- a/website/source/docs/getting-started/boxes.html.md +++ b/website/source/docs/getting-started/boxes.html.md @@ -74,6 +74,15 @@ the box above. This is how Vagrant knows what box to use. If the box was not added before, Vagrant will automatically download and add the box when it is run. +You may specify an explicit version of a box by specifying `config.vm.box_version` +for example: +```ruby +Vagrant.configure("2") do |config| + config.vm.box = "debian/wheezy64" + config.vm.box_version = "7.8.3" +end +``` + In the next section, we will bring up the Vagrant environment and interact with it a little bit.