1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-24 01:22:10 +02:00
tldr/pages/common/singularity.md

27 lines
724 B
Markdown

# singularity
> Manage Singularity containers and images.
- Download a remote image from Sylabs Cloud:
`singularity pull --name {{image.sif}} {{library://godlovedc/funny/lolcow:latest}}`
- Rebuild a remote image using latest Singularity image format:
`singularity build {{image.sif}} {{docker://godlovedc/lolcow}}`
- Start a container from an image and get a shell inside of it:
`singularity shell {{image.sif}}`
- Start a container from an image and run a command:
`singularity exec {{image.sif}} {{command}}`
- Start a container from an image and execute the internal runscript:
`singularity run {{image.sif}}`
- Build a singularity image from a recipe file:
`sudo singularity build {{image.sif}} {{recipe}}`