Trouble with document_exporter #1317
-
Hello, when I try to backup paperless on my external USB device, I get just the error, that the path does not exist.
The path exist, and I can change to this folder with Could this a permission issue? My docker/paperless setup:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
I think the problem is that the specified export path is outside the docker container. Is there a simple solution for this? |
Beta Was this translation helpful? Give feedback.
-
That path does not exist inside the container.
You would need to add the the path to your docker-compose.yml inside the service webserver:
I really don't recommend directly mounting USB devices/storage into your containers if you are planning to remove the device at any point. Also you will need to make sure that the user running the service inside the container has read/write permission on the file system of your USB device. |
Beta Was this translation helpful? Give feedback.
That path does not exist inside the container.
You would need to add the the path to your docker-compose.yml inside the service webserver:
I really don't recommend directly mounting…