Changes between Version 7 and Version 8 of cypress/SingularityDockerhub


Ignore:
Timestamp:
08/20/25 15:53:32 (14 hours ago)
Author:
cbaribault
Comment:

Added setup info, adjusted titles

Legend:

Unmodified
Added
Removed
Modified
  • cypress/SingularityDockerhub

    v7 v8  
    2121}}}
    2222
     23== Building a container for Ubuntu ==
     24
    2325Load the module,
    2426{{{
     
    3739}}}
    3840
     41For convenience, we've already done the above for you as well as providing access to LUSTRE, etc., when you perform the following.
     42
     43{{{
     44source /lustre/project/singularity_images/setup_cypress.sh
     45}}}
     46
     47Here's what the file setup_cypress contains.
     48
     49{{{
     50cat /lustre/project/singularity_images/setup_cypress.sh
     51# Set $TMPDIR in containar to /tmp, keeping $TMPDIR in host (/local/tmp/...)
     52export SINGULARITYENV_TMPDIR=/tmp
     53# Mount the lustre directory to home, $TMPDIR to /tmp
     54export SINGULARITY_BINDPATH=/cm:/cm,/share:/share,/lustre:/lustre,/home:/home,$TMPDIR:/tmp
     55}}}
     56 
    3957By 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.
    4058
    41 === Example : [https://github.com/moshi4/FastDTLmapper FastDTLmapper] ===
     59== Example : [https://github.com/moshi4/FastDTLmapper FastDTLmapper] ==
    4260This 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.
    4361