Are you using Vagrant with the Hyper-V provider? Then take a look at this article:
TL;DR: We have added an eryph provider to the vagrant ecosystem, so you can now replace an existing Hyper-V-based vagrantfile with eryph:
vagrant plugin install vagrant-eryph
# Enhanced Vagrantfile
Vagrant.configure("2") do |config|
config.vm.provider :eryph do |eryph|
eryph.parent = "dbosoft/ubuntu-22.04/starter"
eryph.memory = 2048
eryph.cpus = 2
eryph.project = "my-app-dev"
end
end
vagrant up --provider=eryph