From a0f601fb52fffd2289dbbd5a60e0caa71d69b518 Mon Sep 17 00:00:00 2001 From: gwangmu <43980405+gwangmu@users.noreply.github.com> Date: Thu, 10 Jul 2025 17:25:07 +0200 Subject: [PATCH] Update edf.md --- docs/software/container-engine/edf.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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`.