Skip to content

Instantly share code, notes, and snippets.

@ThomasArdal
Created May 5, 2014 11:10
Show Gist options
  • Save ThomasArdal/26510a4c01ea26caeb0b to your computer and use it in GitHub Desktop.
Save ThomasArdal/26510a4c01ea26caeb0b to your computer and use it in GitHub Desktop.
VagrantFile for running Elasticsearch on Linux
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "precise32"
config.vm.box_url = "http://files.vagrantup.com/precise32.box"
config.vm.provision :shell, :path => "bootstrap.sh"
config.vm.network :forwarded_port, guest: 9200, host: 9200
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment