1
我用我的腳本創建了一個奇點圖像。我需要使用帶腳本參數的本地文件運行我的應用程序。爲此我想使用--bind參數。奇點綁定文件
singularity run --bind /my/source/file:/destination/file my_app_image.img <input.txt >output.txt
但我想直接像這樣運行: - 文件未安裝在目標
./my_app_image.img --bind /my/source/file:/destination/file <input.txt >output.txt
但是,這並不工作,如果我嘗試做這工作完全正常。我如何在運行時裝載文件?