From 067604ceac6efaca8dfae07303d8d7f1d88bb4b8 Mon Sep 17 00:00:00 2001 From: Simon L Date: Thu, 9 Mar 2023 20:22:50 +0100 Subject: [PATCH] improve hint about dns resolving Signed-off-by: Simon L --- Containers/mastercontainer/start.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Containers/mastercontainer/start.sh b/Containers/mastercontainer/start.sh index 2fafd26e..26f62ab2 100644 --- a/Containers/mastercontainer/start.sh +++ b/Containers/mastercontainer/start.sh @@ -223,7 +223,8 @@ curl https://nextcloud.com &>/dev/null if [ "$?" = 6 ]; then echo "Could not resolve the host nextcloud.com." echo "Most likely the DNS resolving does not work." - echo "You should be able to fix this by adding the '--dns=\"ip.address.of.dns.server\"' option to the docker run command." + echo "You should be able to fix this by following https://dockerlabs.collabnix.com/intermediate/networking/Configuring_DNS.html" + echo "Apart from that, there has been this: https://github.com/nextcloud/all-in-one/discussions/2065" exit 1 fi