We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f34ea7d commit c75566dCopy full SHA for c75566d
1 file changed
Vagrantfile
@@ -11,10 +11,9 @@ Vagrant.configure("2") do |config|
11
# IP will be associated to 'deis-controller.local' using avahi-daemon
12
config.vm.network :private_network, ip: "192.168.61.100"
13
14
- # The Deis Controller requires at least 1G of RAM to install.
15
- # You may be able to run it with less once it's installed.
+ # The Deis Controller requires at least 2G of RAM to install.
16
config.vm.provider :virtualbox do |vb|
17
- vb.customize ["modifyvm", :id, "--memory", "1024"]
+ vb.customize ["modifyvm", :id, "--memory", "2048"]
18
end
19
20
# 'deis provider:discover' detects the host machine's user and IP address, however, that command cannot
0 commit comments