From 74ea898e181f5acb613b4b2632a8336a6a4209bc Mon Sep 17 00:00:00 2001 From: Tarek Loubani Date: Thu, 2 Jun 2016 13:05:10 -0400 Subject: [PATCH] Update Vagrant development environment to use Ubuntu 16.04 - Uses Ubuntu Server 16.04 - Replace NFS with regular vagrant mechanism for shared folder --- Vagrantfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index b598918036f..595c456bdb7 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -3,8 +3,8 @@ # See https://github.com/discourse/discourse/blob/master/docs/VAGRANT.md # Vagrant.configure("2") do |config| - config.vm.box = 'discourse/discourse-1.3.0' - config.vm.box_url = "http://discourse-vms.s3.amazonaws.com/discourse-1.3.0.box" + config.vm.box = 'discourse-16.04' + config.vm.box_url = "https://www.dropbox.com/s/2132770g1e05c6d/discourse.box?dl=0" # Make this VM reachable on the host network as well, so that other # VM's running other browsers can access our dev server. @@ -43,6 +43,6 @@ Vagrant.configure("2") do |config| config.vm.network :forwarded_port, guest: 1080, host: 4080 # Mailcatcher nfs_setting = RUBY_PLATFORM =~ /darwin/ || RUBY_PLATFORM =~ /linux/ - config.vm.synced_folder ".", "/vagrant", id: "vagrant-root", :nfs => nfs_setting + config.vm.synced_folder ".", "/vagrant", id: "vagrant-root" end