From e58e9ab0a29a5ab5add5dff6636c2c571c8e61f6 Mon Sep 17 00:00:00 2001 From: Chun-Hung Tseng Date: Fri, 20 Dec 2024 11:46:48 +0100 Subject: [PATCH] Fix issue with podman --- kind/local-env.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kind/local-env.sh b/kind/local-env.sh index f0fe766..2d28f0b 100755 --- a/kind/local-env.sh +++ b/kind/local-env.sh @@ -103,7 +103,7 @@ 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 --load -t netbox-load-local-data:1.0 --no-cache --progress=plain -f ./dockerfile . && cd - # load local images declare -a Local_Images=( \ "netbox-load-local-data:1.0" \