From 8723f585e071957dd00179310761249a86fa74e6 Mon Sep 17 00:00:00 2001 From: Viharm Date: Tue, 18 Mar 2025 16:50:59 +0000 Subject: [PATCH] chore(docs): clarify missing ':ro' tag in volume mount as a warning (#16877) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 📝 Clarify missing ':ro' tag in volume mount as a warning Changed description in comment of example docker compose file to clarify it as a warning that Immich may delete it, instead of sounding as if it is ok to delete. Co-authored-by: Alex --- docs/docs/features/libraries.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/features/libraries.md b/docs/docs/features/libraries.md index c09fd5043c..9eb05383b3 100644 --- a/docs/docs/features/libraries.md +++ b/docs/docs/features/libraries.md @@ -95,7 +95,7 @@ The `immich-server` container will need access to the gallery. Modify your docke + - /mnt/nas/christmas-trip:/mnt/media/christmas-trip:ro + - /home/user/old-pics:/mnt/media/old-pics:ro + - /mnt/media/videos:/mnt/media/videos:ro -+ - /mnt/media/videos2:/mnt/media/videos2 # the files in this folder can be deleted, as it does not end with :ro ++ - /mnt/media/videos2:/mnt/media/videos2 # WARNING: Immich will be able to delete the files in this folder, as it does not end with :ro + - "C:/Users/user_name/Desktop/my media:/mnt/media/my-media:ro" # import path in Windows system. ```