Skip to content

Instantly share code, notes, and snippets.

@angshu
Last active July 1, 2019 11:33
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/006725885cbdfe65f04228f04ef67bb0 to your computer and use it in GitHub Desktop.
Save angshu/006725885cbdfe65f04228f04ef67bb0 to your computer and use it in GitHub Desktop.
Vagrantfile
# -*- 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.10"
# config.vm.synced_folder "..", "/bahmni", :owner => "vagrant"
config.vm.provider "virtualbox" do |v|
v.customize ["modifyvm", :id, "--memory", 8192, "--cpus", 2, "--name", "Bahmni-92-RC"]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment