pub const ENV_MOUNTS: &str = "MSB_MOUNTS";Expand description
Environment variable carrying virtiofs volume mount specs for guest init.
Format: tag:guest_path[:ro][;tag:guest_path[:ro];...]
tag— virtiofs tag name (required, matches the tag used in--mount)guest_path— mount point inside the guest (required)ro— mount read-only (optional suffix)
Entries are separated by ;.
Examples:
MSB_MOUNTS=data:/data— mount virtiofs tagdataat/dataMSB_MOUNTS=data:/data:ro— mount read-onlyMSB_MOUNTS=data:/data;cache:/cache:ro— two mounts