Skip to content

Instantly share code, notes, and snippets.

@petems
Created June 27, 2014 14:23
Show Gist options
  • Save petems/dfeb386bcd248864f784 to your computer and use it in GitHub Desktop.
Save petems/dfeb386bcd248864f784 to your computer and use it in GitHub Desktop.
Tries to open with VMWare...
config.vm.define "oracledb" do |oracledb|
puts ENV['VAGRANT_DEFAULT_PROVIDER']
oracledb.vm.box = "oracledb_201406241602"
oracledb.vm.box_url = "https://fakewebsite.com/capdoracledb_201406241602.box"
oracledb.vm.provider :virtualbox do |vb|
vb.customize ["modifyvm", :id, "--memory", 1024, "--ioapic", "on"]
end
oracledb.vm.host_name = 'oracledb.test'
oracledb.vm.provision :shell, :path => "vagrant.sh"
oracledb.vm.network "private_network", ip: "172.16.10.12"
oracledb.vm.network "forwarded_port", guest: 1521, host: 1521, auto_correct: true
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment