Skip to content

Instantly share code, notes, and snippets.

@mxrss
Created January 9, 2014 05:27
Show Gist options
  • Save mxrss/8329805 to your computer and use it in GitHub Desktop.
Save mxrss/8329805 to your computer and use it in GitHub Desktop.
Vagrant Configuration for redis, es, memcaches and mysql
Vagrant.configure("2") do |config|
config.vm.box = "precise32"
config.vm.provision :shell, :path=> "bootstrap.sh"
config.vm.network "forwarded_port", guest: 3306, host: 3306
config.vm.network "private_network", ip: "192.168.50.4"
config.vm.provider "virtualbox" do |vb|
vb.customize ["modifyvm", :id, "--memory", "2048"]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment