From 1a2826a6f63e07bb6bb6e3b2785ab364dd6f71d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guillermo=20Julia=CC=81n?= Date: Mon, 9 Dec 2024 17:43:48 +0100 Subject: [PATCH] Use docker import --- test/new-e2e/system-probe/test/micro-vm-init.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/new-e2e/system-probe/test/micro-vm-init.sh b/test/new-e2e/system-probe/test/micro-vm-init.sh index 015b83f810b2d3..f5bb4bc63c8ed7 100755 --- a/test/new-e2e/system-probe/test/micro-vm-init.sh +++ b/test/new-e2e/system-probe/test/micro-vm-init.sh @@ -11,7 +11,7 @@ ls -lahR $docker_dir systemctl start docker ## Load docker images if [[ -d "${docker_dir}" ]]; then - find "${docker_dir}" -maxdepth 1 -type f -exec /bin/bash -c "echo {} && docker load -i {}" \; + find "${docker_dir}" -maxdepth 1 -type f -exec /bin/bash -c "echo loading image {} && docker import -i {}" \; fi # VM provisioning end !