Add comments.

This commit is contained in:
Shishir Mahajan 2020-06-29 13:16:31 -07:00
parent 910f61de3b
commit 22200eb06c
No known key found for this signature in database
GPG Key ID: D41782E7688DEC4A

View File

@ -69,7 +69,9 @@ func (d *Driver) createContainer(image containerd.Image, containerName, containe
opts = append(opts, oci.WithLinuxDevice(device, "rwm")) opts = append(opts, oci.WithLinuxDevice(device, "rwm"))
} }
// Set mounts. // Set mounts. fstab style mount options are supported.
// List of all supported mount options.
// https://github.com/containerd/containerd/blob/master/mount/mount_linux.go#L187-L211
mounts := make([]specs.Mount, 0) mounts := make([]specs.Mount, 0)
for _, mount := range config.Mounts { for _, mount := range config.Mounts {
m := specs.Mount{} m := specs.Mount{}