summaryrefslogtreecommitdiff
path: root/docs.org
diff options
context:
space:
mode:
Diffstat (limited to 'docs.org')
-rw-r--r--docs.org4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs.org b/docs.org
index 0109f71..406c739 100644
--- a/docs.org
+++ b/docs.org
@@ -201,6 +201,10 @@ if [ ! -d "$install_directory" ]; then
fi
fi
+if [ ! -w "$install_directory" ] || [ ! -r "$install_directory" ]; then
+ send_error_message "The directory \"$install_directory\" is not writable or readable by the current user. Set the correct permissions or try a different directory" ❌
+fi
+
filename="$install_directory/docker-compose.yaml"
custom_file_filename="$install_directory/docker-compose.custom.yaml"
env_file="$install_directory/.env"