Skip to content

Instantly share code, notes, and snippets.

@realsby
Last active April 24, 2018 22:03
Show Gist options
  • Save realsby/159c2a1ab14d59b439f730fe846091c7 to your computer and use it in GitHub Desktop.
Save realsby/159c2a1ab14d59b439f730fe846091c7 to your computer and use it in GitHub Desktop.
Vagrant ubuntu mac config
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/xenial64"
config.vm.box_check_update = false
config.vm.network :private_network, ip: "192.192.0.92"
config.vm.synced_folder "vagrant", "/Vagrant", id: "vagrant-root", :nfs => true
config.vm.provider "virtualbox" do |vb|
vb.memory = "2048"
vb.cpus = "2"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment