From e765f88486c1708363a28f31f768ade1d0754607 Mon Sep 17 00:00:00 2001 From: "Rob Dolin (MSFT)" Date: Fri, 27 May 2016 09:46:37 -0700 Subject: [PATCH] [ Config ] Simplify language for Windows Current language seems confusing: > Windows, the volume name that is the target of the mount point. \?\Volume{GUID}\ (on Windows source is called target) This PR proposes a simplification per conversation John Howard: > On Windows, this MUST be a directory name. Signed-off-by: Rob Dolin --- config.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config.md b/config.md index bd42af426..e8589fbc5 100644 --- a/config.md +++ b/config.md @@ -46,7 +46,8 @@ The parameters are similar to the ones in [the Linux mount system call](http://m * **`destination`** (string, required) Destination of mount point: path inside container. For the Windows operating system, one mount destination MUST NOT be nested within another mount. (Ex: c:\\foo and c:\\foo\\bar). * **`type`** (string, required) Linux, *filesystemtype* argument supported by the kernel are listed in */proc/filesystems* (e.g., "minix", "ext2", "ext3", "jfs", "xfs", "reiserfs", "msdos", "proc", "nfs", "iso9660"). Windows: ntfs -* **`source`** (string, required) a device name, but can also be a directory name or a dummy. Windows, the volume name that is the target of the mount point. \\?\Volume\{GUID}\ (on Windows source is called target) +* **`source`** (string, required) a device name, but can also be a directory name or a dummy. +On Windows, this MUST be a directory name. * **`options`** (list of strings, optional) in the fstab format [https://wiki.archlinux.org/index.php/Fstab](https://wiki.archlinux.org/index.php/Fstab). ### Example (Linux)