Skip to content

Commit

Permalink
fix(Vagrantfile): add RAM config for libvirt
Browse files Browse the repository at this point in the history
  • Loading branch information
olwalkey committed Aug 16, 2024
1 parent 6c9b939 commit cce8fe8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@ Vagrant.configure("2") do |config|
v.vmx["memsize"] = "4096"
v.vmx["numvcpus"] = "4"
end

# Libvirt provider
config.vm.provider "libvirt" do |libvirt|
libvirt.memory = 4096
libvirt.cpus = 4
end
# setup the synced folder and provision the VM
config.vm.synced_folder ".", "/var/www/pterodactyl"
config.vm.provision "shell", path: "vagrant/provision.sh"
Expand Down

0 comments on commit cce8fe8

Please sign in to comment.