Skip to content

Instantly share code, notes, and snippets.

@tonylukasavage
Created May 27, 2015 12:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tonylukasavage/e82eea0bdd4401bd7e4f to your computer and use it in GitHub Desktop.
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…
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