From 8d386da7b7dc9e4df41098b314d0b0874ac374d1 Mon Sep 17 00:00:00 2001 From: Philipp Rothmann Date: Sat, 28 Dec 2024 23:26:15 +0100 Subject: [PATCH] chore: add doc for external volume --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 53e419f..c3fa6e6 100644 --- a/README.md +++ b/README.md @@ -22,3 +22,17 @@ * `abra app deploy ` For more, see [`docs.coopcloud.tech`](https://docs.coopcloud.tech). + + +## Volume + +You can manually create a volume that has more storage for the library. For example samba: https://docs.docker.com/engine/storage/volumes/#create-cifssamba-volumes + +``` + docker volume create \ + --driver local \ + --opt type=cifs \ + --opt device=//uxxxxx.your-server.de/backup \ + --opt o=addr=uxxxxx.your-server.de,username=uxxxxxxx,password=*****,file_mode=0777,dir_mode=0777 \ + --name immich_example_com_uploads +```