Changes between Version 7 and Version 8 of cypress/SingularityDockerhub
- Timestamp:
- 08/20/25 15:53:32 (14 hours ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
cypress/SingularityDockerhub
v7 v8 21 21 }}} 22 22 23 == Building a container for Ubuntu == 24 23 25 Load the module, 24 26 {{{ … … 37 39 }}} 38 40 41 For convenience, we've already done the above for you as well as providing access to LUSTRE, etc., when you perform the following. 42 43 {{{ 44 source /lustre/project/singularity_images/setup_cypress.sh 45 }}} 46 47 Here's what the file setup_cypress contains. 48 49 {{{ 50 cat /lustre/project/singularity_images/setup_cypress.sh 51 # Set $TMPDIR in containar to /tmp, keeping $TMPDIR in host (/local/tmp/...) 52 export SINGULARITYENV_TMPDIR=/tmp 53 # Mount the lustre directory to home, $TMPDIR to /tmp 54 export SINGULARITY_BINDPATH=/cm:/cm,/share:/share,/lustre:/lustre,/home:/home,$TMPDIR:/tmp 55 }}} 56 39 57 By default, the cache is stored in ~/.singularity; this location can be customized using the environmental variable SINGULARITY_CACHEDIR. A subcommand, singularity cache, can be used to manage the cache. 40 58 41 == = Example : [https://github.com/moshi4/FastDTLmapper FastDTLmapper] ===59 == Example : [https://github.com/moshi4/FastDTLmapper FastDTLmapper] == 42 60 This tool depends on many python packages and requires both python2 and python3. Fortunately, the developer provides Docker Images so we can use it to generate a Singularity image. 43 61