-
-
Save andjc/ea6394ceef244b0e0b3e to your computer and use it in GitHub Desktop.
ModernIE Vagrantfile Template - http://joecod.es/modernie-vagrant-boxes/ & http://joecod.es/modernie-for-vagrant-reloaded/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
=begin | |
ModernIE VMs | |
config.vm.box = "modernIE/vista-ie7" | |
config.vm.box = "modernIE/w7-ie8" | |
config.vm.box = "modernIE/w7-ie9" | |
config.vm.box = "modernIE/w7-ie10" | |
config.vm.box = "modernIE/w7-ie11" | |
config.vm.box = "modernIE/w8-ie10" | |
config.vm.box = "modernIE/w8.1-ie11" | |
config.vm.box = "modernIE/w10-edge" | |
System Account Credentials | |
Username: IEUser | |
Password: Passw0rd! | |
=end | |
Vagrant.configure("2") do |config| | |
config.vm.box = "modernIE/w7-ie11" | |
config.vm.provider "virtualbox" do |vb| | |
vb.customize ["modifyvm", :id, "--memory", "1024"] | |
vb.customize ["modifyvm", :id, "--vram", "128"] | |
vb.customize ["modifyvm", :id, "--cpus", "2"] | |
vb.customize ["modifyvm", :id, "--natdnsproxy1", "on"] | |
vb.customize ["modifyvm", :id, "--natdnshostresolver1", "on"] | |
vb.customize ["guestproperty", "set", :id, "/VirtualBox/GuestAdd/VBoxService/--timesync-set-threshold", 10000] | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment