Skip to content

Commit 565a323

Browse files
committed
Vagrantfile changes
• Use a newer Ubuntu box that works with vmware • Give it a bit more resources
1 parent 404ed20 commit 565a323

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

Vagrantfile

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,19 @@ Vagrant.configure(2) do |config|
44

55
# We use Ubuntu instead of Debian because the image comes with two-way
66
# shared folder support by default.
7-
UBUNTU = 'ubuntu/xenial64'
7+
UBUNTU = 'bento/ubuntu-16.04'
88

99
# The main VM is the one used for development and testing.
1010
config.vm.define(:exa, primary: true) do |config|
1111
config.vm.provider :virtualbox do |v|
1212
v.name = 'exa'
13-
v.memory = 1024
14-
v.cpus = 1
13+
v.memory = 2048
14+
v.cpus = 2
15+
end
16+
17+
config.vm.provider :vmware_desktop do |v|
18+
v.vmx['memsize'] = '2048'
19+
v.vmx['numvcpus'] = '2'
1520
end
1621

1722
config.vm.box = UBUNTU

0 commit comments

Comments
 (0)