-
Notifications
You must be signed in to change notification settings - Fork 629
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add singularity.libraryDir to config page #5498
base: master
Are you sure you want to change the base?
Add singularity.libraryDir to config page #5498
Conversation
Signed-off-by: Christopher Hakkaart <chris.hakkaart@seqera.io>
✅ Deploy Preview for nextflow-docs-staging ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
@@ -1375,6 +1375,9 @@ The following settings are available: | |||
`singularity.envWhitelist` | |||
: Comma separated list of environment variable names to be included in the container environment. | |||
|
|||
`singularity.libraryDir` | |||
: Directory where remote Singularity images are retrieved. When using a computing cluster it must be a shared folder accessible to all compute nodes. | |||
|
|||
`singularity.noHttps` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it should be added an entry for apptainer.libraryDir
as well.
Also the description could be extended to make it coherent with the explanation here
When looking for a Singularity image file, Nextflow first checks the library directory, and if the image file is not found, the cache directory is used as usual. The library directory can be defined either using the NXF_SINGULARITY_LIBRARYDIR environment variable or the singularity.libraryDir configuration setting (the latter overrides the former).
Signed-off-by: Christopher Hakkaart <chris.hakkaart@seqera.io>
Fixes #1879