Skip to content

Instantly share code, notes, and snippets.

@rkh
Created June 8, 2012 13:11
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rkh/2895532 to your computer and use it in GitHub Desktop.
Save rkh/2895532 to your computer and use it in GitHub Desktop.
# Save this in an empty directory as Vagrantfile and run:
#
# gem install vagrant
# vagrant up
# vagrant ssh
#
# You need to have a recent VirtualBox installed.
Vagrant::Config.run do |config|
config.vm.box = "travis-ruby"
config.vm.box_url = "http://files.travis-ci.org/boxes/provisioned/travis-ruby.box"
config.vm.forward_port 22, 2220
config.vm.customize ["modifyvm", :id, "--nictype1", "Am79C973", "--memory", "1536", "--cpus", "2", "--ioapic", "on"]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment