Hello,
What is the proper way to specify `SupportedMountOptions` with a mount? Tried to specify it with something like this:
{
destination: mount.destination,
source: mount.source,
options: ["ro", "rbind", "dcache=0"],
type: "bind",
}
and this:
{
destination: mount.destination,
source: mount.source,
options: ["ro", "rbind"],
dcache: 0,
type: "bind",
}
But both are not working as expected. It would be great if you could provide an example. Thank you!
Best regards,
Qiyuan