Skip to content

Commit 784ecd9

Browse files
committed
Merge pull request #667 from opdemand/carmstrong/vagrant_name
Adds friendly name in VirtualBox
2 parents d0b6e5c + a1e2ee0 commit 784ecd9

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

contrib/vagrant/Vagrantfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,12 @@ Vagrant.configure("2") do |config|
1010
# IP will be associated to 'deis-controller.local' using avahi-daemon
1111
config.vm.network :private_network, ip: "192.168.61.100"
1212

13-
# The Deis Controller requires at least 2G of RAM to install.
1413
config.vm.provider :virtualbox do |vb|
14+
# The Deis Controller requires at least 2G of RAM to install.
1515
vb.customize ["modifyvm", :id, "--memory", "2048"]
16+
17+
# Displays a friendly name in the VirtualBox GUI
18+
vb.name = "deis-controller"
1619
end
1720

1821
config.vm.synced_folder "../../", "/vagrant"

0 commit comments

Comments
 (0)