Last active
April 24, 2018 22:03
-
-
Save realsby/159c2a1ab14d59b439f730fe846091c7 to your computer and use it in GitHub Desktop.
Vagrant ubuntu mac config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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