Skip to content

Instantly share code, notes, and snippets.

@murarisumit
Created September 15, 2017 23:31
Show Gist options
  • Save murarisumit/0bf63abe91904707fc6c92345765d107 to your computer and use it in GitHub Desktop.
Save murarisumit/0bf63abe91904707fc6c92345765d107 to your computer and use it in GitHub Desktop.
Vagrantfile
# -*- 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