diff --git a/lib/microvm.sh b/lib/microvm.sh index 34a9470..30f23fe 100644 --- a/lib/microvm.sh +++ b/lib/microvm.sh @@ -155,13 +155,14 @@ microvm_run() { if [ -n "$KRUNVM_RUNNER_VOLS" ]; then while IFS= read -r mount || [ -n "$mount" ]; do if [ -n "$mount" ]; then - set -- --volume "$mount" "$@" + set -- --volume "${mount}:Z,rw" "$@" fi done <