Advertisement
Guest User

Vagrantfile

a guest
Jan 27th, 2015
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. Vagrant.configure("2") do |config|
  2. config.vm.box = "hashicorp/precise64"
  3. config.vm.network :forwarded_port, host: 8000, guest: 8000
  4. config.vm.network "private_network", type: "dhcp"
  5. config.vm.synced_folder ".", "/vagrant", type: "nfs"
  6. config.ssh.forward_agent
  7. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement