summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGaute Hope <eg@gaute.vetsj.com>2019-05-05 08:23:59 +0200
committerGaute Hope <eg@gaute.vetsj.com>2019-05-05 08:24:54 +0200
commita5ccb71d9f37742b6ed28b6eb82670b3c6dfc3b4 (patch)
tree39e1a93d50b4a0702274870d9b30e65221dcefe5
parent23c360f79a69c6c228de0a2dc566d2df7e9fa30b (diff)
vagrant: more mem + cpus
-rw-r--r--Vagrantfile18
1 files changed, 9 insertions, 9 deletions
diff --git a/Vagrantfile b/Vagrantfile
index 72dc681..e6a1059 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -43,20 +43,20 @@ Vagrant.configure("2") do |config|
# the path on the host to the actual folder. The second argument is
# 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 "~/.mail", "/vagrant/mail"
# 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|
- # Display the VirtualBox GUI when booting the machine
- # vb.gui = true
-
- # Customize the amount of memory on the VM:
- vb.memory = (3 * 1024).to_s
- vb.cpus = 4
- end
+ config.vm.provider "virtualbox" do |vb|
+ # Display the VirtualBox GUI when booting the machine
+ # vb.gui = true
+
+ # Customize the amount of memory on the VM:
+ vb.memory = (3 * 1024).to_s
+ vb.cpus = 4
+ end
#
# View the documentation for the provider you are using for more
# information on available options.