diff --git a/docs/software/container-engine/edf.md b/docs/software/container-engine/edf.md index 954bb58c..704f873a 100644 --- a/docs/software/container-engine/edf.md +++ b/docs/software/container-engine/edf.md @@ -142,7 +142,7 @@ List of mounts in the format `SOURCE:DESTINATION[:FLAGS]`. By default, it perfor * Mounting the scratch filesystem using a host environment variable ```toml - mounts = ["${SCRATCH}:/scratch"] + mounts = ["${SCRATCH}:${SCRATCH}"] ``` * Mounting a SquashFS image `${SCRATCH}/data.sqsh` to `/data` @@ -150,6 +150,11 @@ List of mounts in the format `SOURCE:DESTINATION[:FLAGS]`. By default, it perfor mounts = ["${SCRATCH}/data.sqsh:/data:sqsh"] ``` + * Mounting multiple entities (the scratch filesystem and a SquashFS image) + ```toml + mounts = ["${SCRATCH}:${SCRATCH}", "${SCRATCH}/data.sqsh:/data:sqsh"] + ``` + !!! note * Mount flags are separated with a plus symbol, for example: `ro+private`.