Created
February 4, 2015 14:04
-
-
Save petems/355ee037ebc2b00bbc64 to your computer and use it in GitHub Desktop.
Windows Beaker Vagrantfile
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
Vagrant.configure("2") do |c| | |
c.vm.define 'win-2008R2-std' do |v| | |
v.vm.hostname = 'win-2008R2-std' | |
v.vm.box = 'opentable/win-2008r2-standard-amd64-nocm' | |
v.vm.box_check_update = 'true' | |
v.vm.network :private_network, ip: "10.255.174.15", :netmask => "255.255.0.0", :mac => "080027E855B5" | |
v.vm.network :forwarded_port, guest: 3389, host: 3389 | |
v.vm.network :forwarded_port, guest: 5985, host: 5985, id: 'winrm', auto_correct: true | |
v.vm.guest = :windows | |
v.vm.provider :virtualbox do |vb| | |
vb.customize ['modifyvm', :id, '--memory', '1024'] | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment