From a4045eebd36943e7dca06d6bf0fb9e2847ac82d9 Mon Sep 17 00:00:00 2001 From: Flaminel Date: Sat, 22 Nov 2025 22:15:37 +0200 Subject: [PATCH] Add downloads volume to detailed installation docs (#365) --- docs/docs/installation/detailed.mdx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/docs/installation/detailed.mdx b/docs/docs/installation/detailed.mdx index 2ab985fe..76e60679 100644 --- a/docs/docs/installation/detailed.mdx +++ b/docs/docs/installation/detailed.mdx @@ -73,6 +73,8 @@ services: - "11011:11011" volumes: - /path/to/config:/config + # Mount your downloads directory if needed + - /path/to/downloads:/downloads environment: - PORT=11011 - BASE_PATH= @@ -105,6 +107,7 @@ services: | Container Path | Description | |----------------|-------------| | `/config` | Configuration files, log files and database | +| `/downloads` | (Optional) Mount your downloads directory if using [Unlinked download settings](/docs/configuration/download-cleaner/?unlinked-download-settings) | Replace `/path/to/config` with your desired configuration directory path on the host system.