Skip to content

Commit

Permalink
Add Windows 2016 to Vagrantfile
Browse files Browse the repository at this point in the history
This image requires membership in the Elastic organization in order to be able to pull it.
  • Loading branch information
andrewkroh authored and ruflin committed Jun 29, 2018
1 parent 898d600 commit 2e3380e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,16 @@ Vagrant.configure(2) do |config|
c.vm.synced_folder ".", "/vagrant", type: "virtualbox"
end

# Windows Server 2016
config.vm.define "win2016", primary: true do |machine|
machine.vm.box = "elastic/windows-2016-x86_64"
machine.vm.provision "shell", inline: $winPsProvision

machine.vm.provider "virtualbox" do |v|
v.memory = 4096
end
end

end

# -*- mode: ruby -*-
Expand Down

0 comments on commit 2e3380e

Please sign in to comment.