Skip to content

Commit 0062bb6

Browse files
committed
fixing option to display boot
1 parent 2cb248e commit 0062bb6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Vagrantfile

+4-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ Vagrant.configure("2") do |config|
66
config.vm.box_url = "http://files.vagrantup.com/precise64.box"
77

88
# Uncomment the next line if you like to watch.
9-
# config.vm.boot_mode = :gui
9+
config.vm.provider :virtualbox do |vb|
10+
# Don't boot with headless mode
11+
#vb.gui = true
12+
end
1013

1114
# Port 8000 on the host will go to port 80 on the Vagrant box
1215
config.vm.network :forwarded_port, guest: 80, host: 8000, auto_correct: true

0 commit comments

Comments
 (0)