From 1ec8bcfaf52124b3761618a420f68cad2809c2d2 Mon Sep 17 00:00:00 2001 From: Kroese Date: Mon, 3 Apr 2023 17:48:49 +0200 Subject: [PATCH] Update readme.md --- readme.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/readme.md b/readme.md index 0fb7ec8..85c09fb 100644 --- a/readme.md +++ b/readme.md @@ -67,3 +67,16 @@ $ docker run --rm -it \ --device="/dev/net/tun:/dev/net/tun" \ kroese/virtual-dsm:latest ``` + +## FAQ + + - How do I change the location of the virtual disk? + +By default it resides inside a docker volume, but you can add a bind mount to your compose file like this: + +``` +volumes: + - /home/user/data:/storage +``` + +to map `/storage` to any local directory you want to use. Just replace `/home/user/data` with the path you want to use.