X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/88f8544d8cbf8ef099a5df9be85dcbcec300a013..c052fbf28d1d6b8fbd8df9c8ea54a4ce9e5ebb08:/Vagrantfile?ds=sidebyside diff --git a/Vagrantfile b/Vagrantfile index 1986dd1d9..c087c0cf4 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -5,6 +5,11 @@ Vagrant.configure("2") do |config| config.vm.box = "precise64" config.vm.box_url = "http://files.vagrantup.com/precise64.box" + if Vagrant.has_plugin?("vagrant-cachier") + config.cache.enable :apt + config.cache.scope = :box + end + # port forward for webrick on 3000 config.vm.network :forwarded_port, :guest => 3000, :host => 3000