1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 14:42:19 +02:00
tldr/pages.ko/common/singularity.md
코드싸이 4b5248236b
common/s*: add and update Korean translation (#14666)
* common/s*: add and update Korean translation

* scamper: fix typo

* Update pages.ko/common/simplehttpserver.md

Co-authored-by: Chooooo <contact@choo.ooo>

* Update pages.ko/common/steamcmd.md

Co-authored-by: Chooooo <contact@choo.ooo>

---------

Co-authored-by: Sebastiaan Speck <shem.speck@gmail.com>
Co-authored-by: Chooooo <contact@choo.ooo>
2024-11-09 10:41:41 +09:00

28 lines
880 B
Markdown

# singularity
> Singularity 컨테이너 및 이미지 관리.
> 더 많은 정보: <https://singularity-docs.readthedocs.io/en/latest/#commands>.
- Sylabs Cloud에서 원격 이미지 다운로드:
`singularity pull --name {{이미지.sif}} {{library://godlovedc/funny/lolcow:latest}}`
- 최신 Singularity 이미지 형식으로 원격 이미지 재구축:
`singularity build {{이미지.sif}} {{docker://godlovedc/lolcow}}`
- 이미지에서 컨테이너를 시작하고 내부에서 셸 실행:
`singularity shell {{이미지.sif}}`
- 이미지에서 컨테이너를 시작하고 명령 실행:
`singularity exec {{이미지.sif}} {{명령}}`
- 이미지에서 컨테이너를 시작하고 내부 runscript 실행:
`singularity run {{이미지.sif}}`
- 레시피 파일에서 Singularity 이미지 생성:
`sudo singularity build {{이미지.sif}} {{레시피}}`