Created
September 15, 2017 23:31
-
-
Save murarisumit/0bf63abe91904707fc6c92345765d107 to your computer and use it in GitHub Desktop.
Vagrantfile
This file contains hidden or 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
# -*- mode: ruby -*- | |
# # vi: set ft=ruby : | |
# | |
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
VAGRANTFILE_API_VERSION = "2" | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
config.vm.box = "ubuntu/xenial64" | |
config.vm.provision :shell do |shell| | |
shell.path = "bin/bootstrap.sh" | |
shell.privileged = true | |
end | |
config.vm.box_check_update = false | |
config.vm.synced_folder ".", "/vagrant" | |
config.vm.provider "virtualbox" do |vb| | |
vb.name = "vagrant-ubuntu-box" | |
vb.customize ["modifyvm", :id, "--accelerate3d", "off"] | |
vb.memory = 4096 | |
vb.cpus = 2 | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment