From 98d598c76fcaf47a8b0be905aa0435b9a5b61a55 Mon Sep 17 00:00:00 2001 From: Daniel Dietzler <36593685+danieldietzler@users.noreply.github.com> Date: Fri, 10 May 2024 15:40:58 +0200 Subject: [PATCH] add the mountpoint warning from the release notes to the docs --- docs/docs/install/environment-variables.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/docs/install/environment-variables.md b/docs/docs/install/environment-variables.md index 6826107893..9d1ba7c172 100644 --- a/docs/docs/install/environment-variables.md +++ b/docs/docs/install/environment-variables.md @@ -23,6 +23,13 @@ If this should not work, try running `docker compose up -d --force-recreate`. | `UPLOAD_LOCATION` | Host Path for uploads | | server, microservices | | `DB_DATA_LOCATION` | Host Path for Postgres database | | database | +:::warning + +Do not use a directory under `/mnt` for `DB_DATA_LOCATION` if you are using WSL. +Generally (on all operating systems) we recommend against using a network share for your database location. This is bound to break and cause all sorts of weird issues. + +::: + :::tip These environment variables are used by the `docker-compose.yml` file and do **NOT** affect the containers directly.