fork of https://github.com/oxigraph/rocksdb and https://github.com/facebook/rocksdb for nextgraph and oxigraph
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
285 B
17 lines
285 B
10 years ago
|
Vagrant.configure("2") do |config|
|
||
|
|
||
|
config.vm.provider "virtualbox" do |v|
|
||
|
v.memory = 4096
|
||
|
v.cpus = 2
|
||
|
end
|
||
|
|
||
|
config.vm.define "ubuntu14" do |box|
|
||
|
box.vm.box = "ubuntu/trusty64"
|
||
|
end
|
||
|
|
||
|
config.vm.define "centos65" do |box|
|
||
|
box.vm.box = "chef/centos-6.5"
|
||
|
end
|
||
|
|
||
|
end
|