Created
June 8, 2012 13:11
-
-
Save rkh/2895532 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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