From 7c369846093544f0617cc0e9ef414d6d6f926370 Mon Sep 17 00:00:00 2001 From: SoulSeekkor Date: Thu, 8 Nov 2018 20:32:23 -0600 Subject: [PATCH] Set Compose HTTP timeout. (#390) --- scripts/run.ps1 | 1 + scripts/run.sh | 1 + 2 files changed, 2 insertions(+) diff --git a/scripts/run.ps1 b/scripts/run.ps1 index 01bfe98bba..39b77ee13c 100644 --- a/scripts/run.ps1 +++ b/scripts/run.ps1 @@ -77,6 +77,7 @@ function Docker-Compose-Files { else { $env:COMPOSE_FILE = "${dockerDir}\docker-compose.yml" } + $env:COMPOSE_HTTP_TIMEOUT = "300" } function Docker-Prune { diff --git a/scripts/run.sh b/scripts/run.sh index 416630fc8d..d2dab6cccf 100644 --- a/scripts/run.sh +++ b/scripts/run.sh @@ -120,6 +120,7 @@ function dockerComposeFiles() { else export COMPOSE_FILE="$DOCKER_DIR/docker-compose.yml" fi + export COMPOSE_HTTP_TIMEOUT="300" } function dockerPrune() {