From 1ad0fcf1b6b414e629be3b92e486653713902a56 Mon Sep 17 00:00:00 2001 From: "Simon L." Date: Fri, 17 Jan 2025 13:52:33 +0100 Subject: [PATCH] improve check for auth.docker.io Signed-off-by: Simon L. --- Containers/mastercontainer/start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containers/mastercontainer/start.sh b/Containers/mastercontainer/start.sh index 7424c436..bca074ae 100644 --- a/Containers/mastercontainer/start.sh +++ b/Containers/mastercontainer/start.sh @@ -285,7 +285,7 @@ fi # Check if auth.docker.io is reachable # Solves issues like https://github.com/nextcloud/all-in-one/discussions/5268 -if ! curl https://auth.docker.io/token | grep -q token; then +if ! curl https://auth.docker.io/token 2>&1 | grep -q token; then print_red "Could not reach https://auth.docker.io." echo "Most likely is something blocking access to it." echo "You should be able to fix this by using https://github.com/nextcloud/all-in-one/tree/main/manual-install"