We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 30cddde + 3dd5407 commit b6b5d59Copy full SHA for b6b5d59
Containers/mastercontainer/start.sh
@@ -274,10 +274,11 @@ fi
274
275
# Check if ghcr.io is reachable
276
# Solves issues like https://github.com/nextcloud/all-in-one/discussions/5268
277
-if ! curl https://ghcr.io &>/dev/null; then
+if ! curl --no-progress-meter https://ghcr.io/v2/ >/dev/null; then
278
print_red "Could not reach https://ghcr.io."
279
echo "Most likely is something blocking access to it."
280
- echo "You should be able to fix this by using https://github.com/nextcloud/all-in-one/tree/main/manual-install"
+ echo "You should be able to fix this by following https://dockerlabs.collabnix.com/intermediate/networking/Configuring_DNS.html"
281
+ echo "Another solution is using https://github.com/nextcloud/all-in-one/tree/main/manual-install"
282
exit 1
283
fi
284
0 commit comments