From e6ecf52df90a62bae1c65471dff525610324c9dd Mon Sep 17 00:00:00 2001 From: Simon L Date: Thu, 9 Mar 2023 20:17:51 +0100 Subject: [PATCH] add link about docker swarm directly to startup script 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..17986dee 100644 --- a/Containers/mastercontainer/start.sh +++ b/Containers/mastercontainer/start.sh @@ -79,7 +79,8 @@ fi # Check if startup command was executed correctly if ! sudo -u www-data docker ps --format "{{.Names}}" | grep -q "^nextcloud-aio-mastercontainer$"; then echo "It seems like you did not give the mastercontainer the correct name? (The 'nextcloud-aio-mastercontainer' container was not found.) -Using a different name is not supported since mastercontainer updates will not work in that case!" +Using a different name is not supported since mastercontainer updates will not work in that case! +If you are on docker swarm and try to run AIO, see https://github.com/nextcloud/all-in-one#can-i-run-this-with-docker-swarm" exit 1 elif ! sudo -u www-data docker volume ls --format "{{.Name}}" | grep -q "^nextcloud_aio_mastercontainer$"; then echo "It seems like you did not give the mastercontainer volume the correct name? (The 'nextcloud_aio_mastercontainer' volume was not found.)