From 35bc7e990747a97d8e599c887f7c58acec14e9b9 Mon Sep 17 00:00:00 2001 From: Stefan Pejcic Date: Thu, 30 May 2024 22:01:10 +0200 Subject: [PATCH] Update INSTALL.sh --- INSTALL.sh | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/INSTALL.sh b/INSTALL.sh index 1d53a34b..b9ec34a1 100644 --- a/INSTALL.sh +++ b/INSTALL.sh @@ -1057,11 +1057,14 @@ download_and_import_docker_images() { echo "Downloading docker images in the background.." if [ "$SKIP_IMAGES" = false ]; then - opencli docker-update_images - # stopped working on 0.1.8 :( - # opencli docker-update_images & - # pid1=$! - # disown $pid1 + # See https://github.com/moby/moby/issues/16106#issuecomment-310781836 for pulling images in parallel + # Nohup (no hang up) with trailing ampersand allows running the command in the background + # The nohup.out 2>nohup.err & + # stopped working on 0.1.8 :( + # opencli docker-update_images & + # pid1=$! + # disown $pid1 fi }