From 59cbf17b02a29109e4a3669f37275b6223e851c9 Mon Sep 17 00:00:00 2001 From: Oliver Date: Mon, 22 May 2023 17:17:59 +1000 Subject: [PATCH] Faq docker (#4871) * Remove stat context variables * Revert "Remove stat context variables" This reverts commit 0989c308d0cea9b9405a1338d257b542c6d33d73. * Allow longer timeout for image download tests * updated translation base * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * docs: Update FAQ section - Add note regarding permissions for docker directories --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- docs/docs/faq.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/docs/docs/faq.md b/docs/docs/faq.md index 93dbd6eb58..af07113403 100644 --- a/docs/docs/faq.md +++ b/docs/docs/faq.md @@ -105,3 +105,18 @@ It means that the user running the InvenTree server does not have permission to Ensure that the user running the InvenTree server has permission to create the required directories. For example, if running the server as the `inventree` user, ensure that the `inventree` user has permission to create the required directories. If you are using Docker to run the InvenTree server, ensure that the user that runs the docker deamon has permission to create the required directories in the volume. + +### docker - failed to mount local volume + +If, when running InvenTree setup using docker, you see an error message like this: + +``` +Error response from daemon: failed to mount local volume: +``` + +This means that either: + +- The specified directory does not exist on your local machine +- The docker user does not have write permission to the specified directory + +In either case, ensure that the directory is available *on your local machine* and the user account has the required permissions.