Skip to content

Instantly share code, notes, and snippets.

@sheanhoxie
Created February 24, 2019 18:05
Show Gist options
  • Select an option

  • Save sheanhoxie/7df2199df59a3e9dc9ed76367b0d716c to your computer and use it in GitHub Desktop.

Select an option

Save sheanhoxie/7df2199df59a3e9dc9ed76367b0d716c to your computer and use it in GitHub Desktop.
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vm.box = "colinodell/debian-squeeze"
config.vm.provider "virtualbox" do |vb|
vb.memory = "2048"
end
config.vm.network "private_network", ip: "192.168.50.2"
config.vm.synced_folder ".", "/vagrant", type: "nfs", mount_options: ['rw', 'vers=3', 'tcp', 'fsc', 'actimeo=2']
config.vm.provision :shell, path: "./dev/provision.sh"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment