From 1af81123086fa4c867482de133a88cbc35284fb4 Mon Sep 17 00:00:00 2001 From: Simon L Date: Tue, 18 Apr 2023 23:07:04 +0200 Subject: [PATCH] add a hint to manual install when people did not grant access to the docker socket by purpose Signed-off-by: Simon L --- Containers/mastercontainer/start.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/Containers/mastercontainer/start.sh b/Containers/mastercontainer/start.sh index 6d780f1f..6377b6f0 100644 --- a/Containers/mastercontainer/start.sh +++ b/Containers/mastercontainer/start.sh @@ -17,6 +17,7 @@ esac # Check if socket is available and readable if ! [ -a "/var/run/docker.sock" ]; then echo "Docker socket is not available. Cannot continue." + echo "If you did this by purpose because you don't want the container to have access to the docker socket, see https://github.com/nextcloud/all-in-one/tree/main/manual-install." exit 1 elif ! mountpoint -q "/mnt/docker-aio-config"; then echo "/mnt/docker-aio-config is not a mountpoint. Cannot proceed!"