We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d0b6e5c + a1e2ee0 commit 784ecd9Copy full SHA for 784ecd9
1 file changed
contrib/vagrant/Vagrantfile
@@ -10,9 +10,12 @@ Vagrant.configure("2") do |config|
10
# IP will be associated to 'deis-controller.local' using avahi-daemon
11
config.vm.network :private_network, ip: "192.168.61.100"
12
13
- # The Deis Controller requires at least 2G of RAM to install.
14
config.vm.provider :virtualbox do |vb|
+ # The Deis Controller requires at least 2G of RAM to install.
15
vb.customize ["modifyvm", :id, "--memory", "2048"]
16
+
17
+ # Displays a friendly name in the VirtualBox GUI
18
+ vb.name = "deis-controller"
19
end
20
21
config.vm.synced_folder "../../", "/vagrant"
0 commit comments