File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Containers/mastercontainer Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 274
274
275
275
# Check if ghcr.io is reachable
276
276
# Solves issues like https://github.com/nextcloud/all-in-one/discussions/5268
277
- if ! curl https://ghcr.io & > /dev/null; then
277
+ if ! curl --no-progress-meter https://ghcr.io/v2/ > /dev/null; then
278
278
print_red " Could not reach https://ghcr.io."
279
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"
280
+ 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"
281
282
exit 1
282
283
fi
283
284
You can’t perform that action at this time.
0 commit comments