tested paralels vm

This commit is contained in:
martin.cholewa
2025-08-28 10:53:41 +02:00
parent 12ee092bda
commit 429a947cb9
2 changed files with 6 additions and 3 deletions

View File

@@ -1 +1 @@
1756366282
1756367186

7
Vagrantfile vendored
View File

@@ -2,7 +2,10 @@ Vagrant.configure("2") do |config|
config.vm.define "node01" do |node|
node.vm.box = "bento/ubuntu-22.04"
node.vm.provider "parallels" do |prl|
prl.name = "node01"
prl.name = "node01" # Set the visible name of the VM in Parallels
prl.memory = 4096 # Allocate 4 GB of RAM (in MB)
prl.cpus = 4 # Allocate 4 CPU cores
prl.check_guest_tools = true # Enable automatic checking/updating of Parallels Tools in the guest
end
end
end
end