Point Ubuntu 12.04 Vagrant file to a readily-available base image.

This commit is contained in:
Ben Darnell 2013-11-06 11:53:00 -05:00
parent 4ec9831f54
commit a324680856
1 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
Vagrant::Config.run do |config|
config.vm.box = "ubuntu12.04"
config.vm.box = "precise64"
config.vm.box_url = "http://files.vagrantup.com/precise64.box"
config.vm.network :hostonly, "172.19.1.5"
config.vm.share_folder("tornado", "/tornado", "../../..", :nfs=> true)