mirror of
https://github.com/dokku/dokku.git
synced 2026-02-24 04:00:36 +01:00
fix: allow vmware-based vm to work on big sur
There seems to be an issue in Vmware that causes SSH to fail for new VMs. https://github.com/hashicorp/vagrant/issues/12045
This commit is contained in:
2
Vagrantfile
vendored
2
Vagrantfile
vendored
@@ -31,10 +31,12 @@ Vagrant::configure("2") do |config|
|
||||
|
||||
config.vm.provider :vmware_fusion do |v, override|
|
||||
v.vmx["memsize"] = BOX_MEMORY
|
||||
v.ssh_info_public = true
|
||||
end
|
||||
|
||||
config.vm.provider :vmware_desktop do |v, override|
|
||||
v.vmx["memsize"] = BOX_MEMORY
|
||||
v.ssh_info_public = true
|
||||
end
|
||||
|
||||
config.vm.define "empty", autostart: false
|
||||
|
||||
Reference in New Issue
Block a user