Skip to content
Permalink
f9b8e2e936
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
21 lines (17 sloc) 532 Bytes
#!/bin/bash
#SBATCH --partition debug
#SBATCH --nodes 1
#SBATCH --ntasks-per-node 1
#SBATCH --mem-per-cpu 2G
#SBATCH --time 1-0:00:00
#SBATCH --job-name singularity-helloworld
#SBATCH --output helloworld-singularity-%J.log
date
hostname
module load singularity
echo "================================================ "
echo "download image"
singularity pull shub://singularityhub/hello-world
echo "Executing the hello-world image"
singularity run ./hello-world_latest.sif
echo "================================================ "