From c0f500576b8e4694328f03978732a8c7f37a646b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guillermo=20Julia=CC=81n?= Date: Tue, 10 Dec 2024 12:05:41 +0100 Subject: [PATCH] fix docker import (Fixup) --- 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 f5bb4bc63c8ed7..0371bb874a1649 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 loading image {} && docker import -i {}" \; + find "${docker_dir}" -maxdepth 1 -type f -exec /bin/bash -c "echo loading image {} && docker import {}" \; fi # VM provisioning end !