Created
December 4, 2012 20:53
-
-
Save lukewpatterson/4208548 to your computer and use it in GitHub Desktop.
Vagrantfile for Travis Ruby
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
Vagrant::Config.run do |config| | |
config.vm.box = "headed-travis-ruby-box" | |
config.vm.box_url = "http://files.travis-ci.org/boxes/provisioned/travis-ruby.box" | |
config.vm.network :hostonly, "192.168.33.10" | |
config.ssh.username = "travis" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment