Skip to content

Instantly share code, notes, and snippets.

@scottslowe
Created September 12, 2014 17:07
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save scottslowe/0f82601987bf1f39c941 to your computer and use it in GitHub Desktop.
Save scottslowe/0f82601987bf1f39c941 to your computer and use it in GitHub Desktop.
This is an extremely simple Vagrantfile to turn up a single Ubuntu 12.04.4 64-bit VM under VirtualBox.
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# Box
config.vm.box = "ubuntu/precise64"
config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/precise/current/precise-server-cloudimg-amd64-vagrant-disk1.box"
# Shared folders
config.vm.synced_folder ".", "/vagrant"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment