From c34570f6655a3c60054a3e902f7ad09f23d4f81f Mon Sep 17 00:00:00 2001 From: t3chn0m4g3 Date: Mon, 28 Dec 2020 20:54:09 +0000 Subject: [PATCH] remove docker parallel pulls --- iso/installer/install.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/iso/installer/install.sh b/iso/installer/install.sh index 29917ba5..62777ea2 100755 --- a/iso/installer/install.sh +++ b/iso/installer/install.sh @@ -752,9 +752,8 @@ esac function fuPULLIMAGES { for name in $(cat $myTPOTCOMPOSE | grep -v '#' | grep image | cut -d'"' -f2 | uniq) do - docker pull $name & + docker pull $name done -wait } fuBANNER "Pull images" fuPULLIMAGES