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.
8 lines
150 B
8 lines
150 B
9 months ago
|
Vagrant.configure("2") do |config|
|
||
|
config.vm.box = "centos/7"
|
||
|
|
||
|
config.vm.provider "virtualbox" do |v|
|
||
|
v.memory = 4096
|
||
|
v.cpus = 2
|
||
|
end
|
||
|
end
|