mirror of
https://github.com/JHUAPL/kaiju.git
synced 2026-01-07 22:34:00 -05:00
This includes a Docker definitoin file for AWS (Dockerfile) and a singularity definition file (gamera.def) for NASA NAS.
13 lines
350 B
Bash
13 lines
350 B
Bash
#!/bin/bash
|
|
|
|
module purge
|
|
module load nas
|
|
module load pkgsrc/2022Q1-rome # For git-lfs and cmake
|
|
module load singularity/3.11.0
|
|
|
|
export NOBACKUP=/nobackup/$USER
|
|
export SINGULARITY_CACHEDIR=$NOBACKUP/.singularity/
|
|
export SINGULARITY_SHELL=/bin/bash
|
|
|
|
# multiple directories separated by a comma
|
|
export SINGULARITY_BIND="$NOBACKUP/path/to/kaiju:/kaiju" |