diff --git a/Vagrantfile b/Vagrantfile index 30acd3a..23fd86a 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -30,18 +30,9 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| colab.vm.box_url = "https://github.com/2creatives/vagrant-centos/releases/download/v6.5.3/centos65-x86_64-20140116.box" end - colab.vm.network :forwarded_port, guest: 80, host: 8080 - colab.vm.network :forwarded_port, guest: 8000, host: 8000 - colab.vm.network :forwarded_port, guest: 5280, host: 5280 - colab.vm.network :forwarded_port, guest: 8080, host: 8081 - colab.vm.network :forwarded_port, guest: 8983, host: 8983 - - colab.vm.network "private_network", ip: "192.168.33.10" - - colab.vm.provider "virtualbox" do |vb| - # Use VBoxManage to customize the VM. For example to change memory: - vb.customize ["modifyvm", :id, "--memory", "1024"] - end + colab.vm.network :forwarded_port, guest: 8000, host: 8000 # Colab (runserver) + colab.vm.network :forwarded_port, guest: 5280, host: 5280 # BOSH server + colab.vm.network :forwarded_port, guest: 8983, host: 8983 # Solr end @@ -73,19 +64,18 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| # the path on the guest to mount the folder. And the optional third # argument is a set of non-required options. # config.vm.synced_folder "../data", "/vagrant_data" - config.vm.synced_folder ".", "/vagrant", type: "nfs" # Provider-specific configuration so you can fine-tune various # backing providers for Vagrant. These expose provider-specific options. # Example for VirtualBox: # - # config.vm.provider "virtualbox" do |vb| + config.vm.provider "virtualbox" do |vb| # # Don't boot with headless mode # vb.gui = true - # - # # Use VBoxManage to customize the VM. For example to change memory: - # vb.customize ["modifyvm", :id, "--memory", "1024"] - # end + + # Use VBoxManage to customize the VM. For example to change memory: + vb.customize ["modifyvm", :id, "--memory", "1024"] + end # # View the documentation for the provider you're using for more # information on available options. -- libgit2 0.21.2