From 0ec0420d6b7d8648af5e2cb465484a34e76f20c5 Mon Sep 17 00:00:00 2001 From: Seth Vargo Date: Mon, 6 Jun 2016 19:21:58 -0400 Subject: [PATCH] Update docs --- website/source/docs/getting-started/boxes.html.md | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/website/source/docs/getting-started/boxes.html.md b/website/source/docs/getting-started/boxes.html.md index a47e4095a..906601860 100644 --- a/website/source/docs/getting-started/boxes.html.md +++ b/website/source/docs/getting-started/boxes.html.md @@ -76,10 +76,20 @@ 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" + config.vm.box = "hashicorp/precise64" + config.vm.box_version = "1.1.0" +end +``` + +You may also specify the URL to a box directly using `config.vm.box_url`: + +```ruby +Vagrant.configure("2") do |config| + config.vm.box = "hashicorp/precise64" + config.vm.box_url = "http://files.vagrantup.com/precise64.box" end ```