Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- VAGRANTFILE_API_VERSION = "2"
- Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
- config.vm.box = "ubuntu/xenial64"
- config.vm.provision "shell", path: "bootstrap.sh"
- config.vm.provider "virtualbox" do |v|
- v.memory = 2048
- v.cpus = 2
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement