Created
May 27, 2015 12:08
-
-
Save tonylukasavage/e82eea0bdd4401bd7e4f to your computer and use it in GitHub Desktop.
Use quick Vagrantfile to emulate a Travis CI environment (AKA, Ubuntu 12.04.5 LTS). Make sure you install vagrant (www.vagrantup.com) and VirtualBox (www.virtualbox.org/wiki/Downloads) first. Create the below Vagrantfile then simply run `vagrant up` in the folder in which it is located. After it boots you can run `vagrant ssh` to SSH into the he…
This file contains hidden or 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.configure("2") do |config| | |
config.vm.box = "precise64" | |
config.vm.box_url = "http://files.vagrantup.com/precise64.box" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment