Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经制作了singulaty图像并运行它。它工作得很好,因为当我使用这个命令查看容器时:
singulaty
singularity shell image_name
我可以看到输出。所以问题是,如何将文件从容器复制到本地目录?
这将在当前工作目录中获取您的图像文件:
singularity exec <image path or url> cp <file in container> .
默认情况下,您的主目录和当前工作目录已挂载到映像中,因此您可以将所需的文件直接复制到这些目录中的任何一个。