From edb55157719adb9b31ed7d49c53261a88127d23c Mon Sep 17 00:00:00 2001 From: Kay Yan Date: Thu, 26 Oct 2023 12:41:21 +0000 Subject: [PATCH] workaround for vagrant up for freebsd Signed-off-by: Kay Yan --- Vagrantfile.freebsd | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Vagrantfile.freebsd b/Vagrantfile.freebsd index 08db3dddc4f..433558cb128 100644 --- a/Vagrantfile.freebsd +++ b/Vagrantfile.freebsd @@ -18,7 +18,9 @@ # Vagrantfile for FreeBSD Vagrant.configure("2") do |config| config.vm.box = "generic/freebsd13" - + # workaround for https://github.com/containerd/nerdctl/issues/2596 + config.vm.box_version = "4.3.2" + memory = 2048 cpus = 1 config.vm.provider :virtualbox do |v, o|