Skip to content

Commit e9b693d

Browse files
authored
Merge pull request #780 from souravbadami/fix-779
Fixes: #779, Modified Vagrantfile with higher VM memory.
2 parents 957adfd + 98a505c commit e9b693d

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

Vagrantfile

+8-7
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
# configures the configuration version (we support older styles for
66
# backwards compatibility). Please don't change it unless you know what
77
# you're doing.
8+
89
Vagrant.configure("2") do |config|
910
# The most common configuration options are documented and commented below.
1011
# For a complete reference, please see the online documentation at
@@ -37,13 +38,13 @@ Vagrant.configure("2") do |config|
3738
# backing providers for Vagrant. These expose provider-specific options.
3839
# Example for VirtualBox:
3940
#
40-
# config.vm.provider "virtualbox" do |vb|
41-
# # Display the VirtualBox GUI when booting the machine
42-
# vb.gui = true
43-
#
44-
# # Customize the amount of memory on the VM:
45-
# vb.memory = "1024"
46-
# end
41+
config.vm.provider "virtualbox" do |vb|
42+
# Display the VirtualBox GUI when booting the machine
43+
# vb.gui = true
44+
45+
# Customize the amount of memory on the VM:
46+
vb.memory = "2048"
47+
end
4748
#
4849
# View the documentation for the provider you are using for more
4950
# information on available options.

0 commit comments

Comments
 (0)