Skip to content

Instantly share code, notes, and snippets.

@angshu
Created October 14, 2019 07:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save angshu/d311d31e258c265651e0323f0336512e to your computer and use it in GitHub Desktop.
Save angshu/d311d31e258c265651e0323f0336512e to your computer and use it in GitHub Desktop.
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vm.box = "centos/7"
config.vm.box_check_update = true
config.ssh.insert_key = false
config.vm.network "private_network", ip: "192.168.33.92"
config.vm.synced_folder "..", "/bahmni", :owner => "vagrant"
config.vm.provider "virtualbox" do |v|
v.customize ["modifyvm", :id, "--memory", 8192, "--cpus", 2, "--name", "Bahmni-0.92"]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment