From 187a572aaf257ef46eff6ab1135bd4f90dffb540 Mon Sep 17 00:00:00 2001 From: Kroese Date: Wed, 19 Apr 2023 17:33:25 +0200 Subject: [PATCH] Update readme.md --- readme.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/readme.md b/readme.md index 9d88083..cce8f1d 100644 --- a/readme.md +++ b/readme.md @@ -92,16 +92,16 @@ docker run -it --rm -p 5000:5000 --device=/dev/kvm --cap-add NET_ADMIN --stop-ti Just replace `/home/user/data` with the path to the folder you want to use for storage. - * ### How do I change the allocation mode of the virtual disk? ### + * ### How do I change the space reserved by the virtual disk? ### - By default the total space for the disk is reserved in advance. If you want to only reserve the space that is actually used by the disk, add these lines: + By default the total space for the disk is reserved in advance. If you want to only reserve the space that is actually used, add these lines: ``` environment: ALLOCATE: "N" ``` - This might lower performance a bit, since the image file needs to grow every time it's written to. + This might lower performance a bit, since the image file will need to grow every time new data is added to it. * ### How do I change the amount of CPU/RAM? ###