We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f68f2d4 commit 1938cf2Copy full SHA for 1938cf2
Vagrantfile
@@ -6,7 +6,11 @@ VAGRANTFILE_API_VERSION = "2"
6
7
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
8
# Every Vagrant virtual environment requires a box to build off of.
9
- config.vm.box = "bytepark/trusty-64"
+ config.vm.box = "ubuntu/trusty64"
10
+ config.vm.provider "virtualbox" do |v|
11
+ v.memory = 2048
12
+ v.cpus = 2
13
+ end
14
15
# Create a private network, which allows host-only access to the machine
16
# using a specific IP.
0 commit comments