Commit 468fd71c by César Galvis

feat: reduced vm resources

parent 8208a074
...@@ -39,8 +39,8 @@ Add the following lines in `Vagrantfile`: ...@@ -39,8 +39,8 @@ Add the following lines in `Vagrantfile`:
# VM setup # VM setup
config.vm.provider "virtualbox" do |vb| config.vm.provider "virtualbox" do |vb|
vb.name = "Windows-VPN" vb.name = "Windows-VPN"
vb.memory = 2048 vb.memory = 1024
vb.cpus = 2 vb.cpus = 1
end end
# Enable UI # Enable UI
......
...@@ -18,8 +18,8 @@ Vagrant.configure("2") do |config| ...@@ -18,8 +18,8 @@ Vagrant.configure("2") do |config|
# VM setup # VM setup
config.vm.provider "virtualbox" do |vb| config.vm.provider "virtualbox" do |vb|
vb.name = "Windows-VPN" vb.name = "Windows-VPN"
vb.memory = 2048 vb.memory = 1024
vb.cpus = 2 vb.cpus = 1
end end
# Enable UI # Enable UI
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment