-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVagrantfile
More file actions
18 lines (16 loc) · 818 Bytes
/
Vagrantfile
File metadata and controls
18 lines (16 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Vagrant.configure("2") do |config|
config.vm.box = "ferrarimarco/open-development-environment-devbox"
config.vm.box_version = ">=1.3.0"
config.vm.network "private_network", type: "dhcp"
config.vm.provider "virtualbox" do |v|
v.customize ["modifyvm", :id, "--cpus", 4]
v.customize ["modifyvm", :id, "--clipboard", "bidirectional"]
v.customize ["modifyvm", :id, "--memory", 4096]
v.customize ["modifyvm", :id, "--natdnshostresolver1", "on"]
v.customize ["modifyvm", :id, "--natdnsproxy1", "on"]
v.customize ["modifyvm", :id, "--vram", "128"] # 10 MB is the minimum to enable Virtualbox seamless mode
v.customize ["modifyvm", :id, "--cableconnected1", "on"] # ensure that the network cable is connected. See chef/bento#688
# Display the VirtualBox GUI
v.gui = true
end
end