Skip to content

Commit 1938cf2

Browse files
author
George P. Stathis
committed
Users official ubuntu vm, customizes vm memory and cpu
1 parent f68f2d4 commit 1938cf2

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Vagrantfile

+5-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@ VAGRANTFILE_API_VERSION = "2"
66

77
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
88
# Every Vagrant virtual environment requires a box to build off of.
9-
config.vm.box = "bytepark/trusty-64"
9+
config.vm.box = "ubuntu/trusty64"
10+
config.vm.provider "virtualbox" do |v|
11+
v.memory = 2048
12+
v.cpus = 2
13+
end
1014

1115
# Create a private network, which allows host-only access to the machine
1216
# using a specific IP.

0 commit comments

Comments
 (0)