From d5020ebda6d97b7b6f9c1d06f9b7a52aa2520949 Mon Sep 17 00:00:00 2001 From: Jean Froment Date: Sun, 31 Jan 2021 18:21:25 +0100 Subject: [PATCH] Increase compose timeout --- update-all.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/update-all.sh b/update-all.sh index cf0a316..42fee5f 100755 --- a/update-all.sh +++ b/update-all.sh @@ -4,6 +4,9 @@ source .env echo "${HTTP_USER}:${HTTP_PASSWORD}" > traefik/http_auth +# Docker-compose settings +COMPOSE_HTTP_TIMEOUT=240 + # Fetch all YAML files SERVICES=$(find services -mindepth 1 -maxdepth 1 -name "*.yaml" | sed -e 's/^/-f /') ALL_SERVICES="-f docker-compose.yaml $SERVICES"