From 3a6684daf057dffce305d687b4be742aeabf306c Mon Sep 17 00:00:00 2001 From: HannesOberreiter Date: Mon, 8 Apr 2024 13:03:30 +0200 Subject: [PATCH] Update production_version.md --- docs/installation/docker/production_version.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/installation/docker/production_version.md b/docs/installation/docker/production_version.md index 8844e26..81ca1d7 100644 --- a/docs/installation/docker/production_version.md +++ b/docs/installation/docker/production_version.md @@ -40,4 +40,8 @@ docker-compose up -d :::tip Now you can browse to **http://YOUR_DOMAIN_NAME:YOUR_PORT** and login as **YOUR_ADMIN_EMAIL** with password **YOUR_ADMIN_PASSWORD** -::: \ No newline at end of file +::: + +:::info +If you're not using Docker volumes and prefer to directly link folders (bind mounts), you'll need to adjust the permissions of those folders. This allows the default user running the Node.js application (usually called "node" and has a user ID of 1000) to make changes to the files and folders inside. You can achieve this by running the following command: `chown -R 1000:1000 /mnt/path` +:::