Skip to content

Instantly share code, notes, and snippets.

@werner-freytag
Forked from erochest/Vagrantfile
Last active August 29, 2015 13:58
Show Gist options
  • Save werner-freytag/9949905 to your computer and use it in GitHub Desktop.
Save werner-freytag/9949905 to your computer and use it in GitHub Desktop.
Bare-bones vagrant files for Ubuntu 14.04 (Trusty Tahr) 64 bit
# vi: set ft=ruby :
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "ubuntu-14.04"
config.vm.box_url = "https://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-amd64-vagrant-disk1.box"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment