Skip to content

Instantly share code, notes, and snippets.

@ajpen
Created October 10, 2016 18:53
Show Gist options
  • Save ajpen/d4b203c42110a47f386354bb63cf9d5d to your computer and use it in GitHub Desktop.
Save ajpen/d4b203c42110a47f386354bb63cf9d5d to your computer and use it in GitHub Desktop.
Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.provision :shell, path: "bootstrap.sh"
config.vm.network :forwarded_port, host: 9200, guest: 9200
config.vm.provider "virtualbox" do |v|
v.memory = 4000
v.cpus = 2
v.name = "ES-2.4"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment