We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 404ed20 commit 565a323Copy full SHA for 565a323
Vagrantfile
@@ -4,14 +4,19 @@ Vagrant.configure(2) do |config|
4
5
# We use Ubuntu instead of Debian because the image comes with two-way
6
# shared folder support by default.
7
- UBUNTU = 'ubuntu/xenial64'
+ UBUNTU = 'bento/ubuntu-16.04'
8
9
# The main VM is the one used for development and testing.
10
config.vm.define(:exa, primary: true) do |config|
11
config.vm.provider :virtualbox do |v|
12
v.name = 'exa'
13
- v.memory = 1024
14
- v.cpus = 1
+ v.memory = 2048
+ v.cpus = 2
15
+ end
16
+
17
+ config.vm.provider :vmware_desktop do |v|
18
+ v.vmx['memsize'] = '2048'
19
+ v.vmx['numvcpus'] = '2'
20
end
21
22
config.vm.box = UBUNTU
0 commit comments