summaryrefslogtreecommitdiffstats
path: root/Vagrantfile
diff options
context:
space:
mode:
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile24
1 files changed, 11 insertions, 13 deletions
diff --git a/Vagrantfile b/Vagrantfile
index 19a4ea9..81f83fd 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -21,11 +21,6 @@ Vagrant.configure(2) do |config|
21 21
22 config.vm.provision :shell, path: "bootstrap.sh" 22 config.vm.provision :shell, path: "bootstrap.sh"
23 23
24 # use the desktop!
25 #config.vm.provider :virtualbox do |vb|
26 # vb.gui = true
27 #end
28
29 # Create a forwarded port mapping which allows access to a specific port 24 # Create a forwarded port mapping which allows access to a specific port
30 # within the machine from a port on the host machine. In the example below, 25 # within the machine from a port on the host machine. In the example below,
31 # accessing "localhost:8080" will access port 80 on the guest machine. 26 # accessing "localhost:8080" will access port 80 on the guest machine.
@@ -50,14 +45,17 @@ Vagrant.configure(2) do |config|
50 # backing providers for Vagrant. These expose provider-specific options. 45 # backing providers for Vagrant. These expose provider-specific options.
51 # Example for VirtualBox: 46 # Example for VirtualBox:
52 # 47 #
53 # config.vm.provider "virtualbox" do |vb| 48 config.vm.provider "virtualbox" do |vb|
54 # # Display the VirtualBox GUI when booting the machine 49 # Display the VirtualBox GUI when booting the machine
55 # vb.gui = true 50 vb.gui = true
56 # 51
57 # # Customize the amount of memory on the VM: 52 # Customize the amount of memory on the VM:
58 # vb.memory = "1024" 53 vb.memory = "2048"
59 # end 54
60 # 55 # let’s have something usable for proper development
56 vb.cpus = 2
57 end
58
61 # View the documentation for the provider you are using for more 59 # View the documentation for the provider you are using for more
62 # information on available options. 60 # information on available options.
63 61