Skip to content

Instantly share code, notes, and snippets.

@skvggor
Last active January 4, 2016 02:58
Show Gist options
  • Save skvggor/8558214 to your computer and use it in GitHub Desktop.
Save skvggor/8558214 to your computer and use it in GitHub Desktop.
Vagrant file
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "ubuntu"
config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/raring/current/raring-server-cloudimg-i386-vagrant-disk1.box"
config.vm.synced_folder "/home/marcker/Copy/Vagrant/vagrant1", "/home/marcker/Copy/Vagrant/vagrant2"
config.vm.network :private_network, ip: "192.168.33.10"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment