From 93de170c38bacee9c882f6b59cc1903fa9ae80ca Mon Sep 17 00:00:00 2001 From: Simon L Date: Mon, 15 Jan 2024 11:06:18 +0100 Subject: [PATCH] add further hint for what could be wrong 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 15104d33..986cf6e0 100644 --- a/Containers/mastercontainer/start.sh +++ b/Containers/mastercontainer/start.sh @@ -70,6 +70,7 @@ fi # Check if api version is supported if ! sudo -u www-data docker info &>/dev/null; then print_red "Cannot connect to the docker socket. Cannot proceed." + echo "Did you maybe remove group read permissions for the docker socket? AIO needs them in order to access the docker socket." echo "If SELinux is enabled on your host, see https://github.com/nextcloud/all-in-one#are-there-known-problems-when-selinux-is-enabled" echo "If you are on TrueNas SCALE, see https://github.com/nextcloud/all-in-one#can-i-run-aio-on-truenas-scale" exit 1