From b96d814abc3ad696748f29e00df55dc5a8483067 Mon Sep 17 00:00:00 2001 From: Chun-Hung Tseng Date: Fri, 20 Dec 2024 11:48:32 +0100 Subject: [PATCH] Fix issue with podman --- kind/local-env.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kind/local-env.sh b/kind/local-env.sh index f0fe766..69b6c83 100755 --- a/kind/local-env.sh +++ b/kind/local-env.sh @@ -103,7 +103,8 @@ for img in "${Remote_Images[@]}"; do done # build image for loading local data via NetBox API -cd ./kind/load-data-job && docker build -t netbox-load-local-data:1.0 --no-cache --progress=plain -f ./dockerfile . && cd - +cd ./kind/load-data-job && docker build -t netbox-load-local-data:1.0 --load --no-cache --progress=plain -f ./dockerfile . && cd - + # load local images declare -a Local_Images=( \ "netbox-load-local-data:1.0" \