You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: config.md
+4-6Lines changed: 4 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,6 @@ For example, if a configuration is compliant with version 1.1 of this specificat
49
49
The runtime MUST mount entries in the listed order.
50
50
For Linux, the parameters are as documented in [mount(2)][mount.2] system call man page.
51
51
For Solaris, the mount entry corresponds to the 'fs' resource in the [zonecfg(1M)][zonecfg.1m] man page.
52
-
For Windows, see [mountvol][mountvol] and [SetVolumeMountPoint][set-volume-mountpoint] for details.
53
52
54
53
55
54
***`destination`** (string, REQUIRED) Destination of mount point: path inside container.
@@ -58,10 +57,10 @@ For Windows, see [mountvol][mountvol] and [SetVolumeMountPoint][set-volume-mount
58
57
* Solaris: corresponds to "dir" of the fs resource in [zonecfg(1M)][zonecfg.1m].
59
58
***`type`** (string, OPTIONAL) The filesystem type of the filesystem to be mounted.
60
59
* Linux: valid *filesystemtype* supported by the kernel as listed in */proc/filesystems* (e.g., "minix", "ext2", "ext3", "jfs", "xfs", "reiserfs", "msdos", "proc", "nfs", "iso9660").
61
-
* Windows: the type of file system on the volume, e.g. "ntfs".
60
+
* Windows: this field MUST NOT be supplied.
62
61
* Solaris: corresponds to "type" of the fs resource in [zonecfg(1M)][zonecfg.1m].
63
62
***`source`** (string, OPTIONAL) A device name, but can also be a directory name or a dummy.
64
-
* Windows: the volume name that is the target of the mount point, \\?\Volume\{GUID}\ (on Windows source is called target).
63
+
* Windows: a local directory on the filesystem of the container host. UNC paths and mapped drives are not supported.
65
64
* Solaris: corresponds to "special" of the fs resource in [zonecfg(1M)][zonecfg.1m].
66
65
***`options`** (list of strings, OPTIONAL) Mount options of the filesystem to be used.
67
66
* Linux: supported options are listed in the [mount(8)][mount.8] man page. Note both [filesystem-independent][mount.8-filesystem-independent] and [filesystem-specific][mount.8-filesystem-specific] options are listed.
@@ -91,9 +90,8 @@ For Windows, see [mountvol][mountvol] and [SetVolumeMountPoint][set-volume-mount
91
90
```json
92
91
"mounts": [
93
92
{
94
-
"destination": "C:\\Users\\crosbymichael\\My Fancy Mount Point\\",
0 commit comments