File tree Expand file tree Collapse file tree 2 files changed +19
-3
lines changed Expand file tree Collapse file tree 2 files changed +19
-3
lines changed Original file line number Diff line number Diff line change @@ -330,7 +330,8 @@ commands. Aliases that are custom to the container are not modified.
330
330
Module Software
331
331
===============
332
332
333
- The default module software is currently LMOD, and there is also support for tcl. If you
333
+ The default module software is currently LMOD, and there is also support for environment
334
+ modules that only use tcl (tcl). If you
334
335
are interested in adding another module type, please `open an issue <https://github.com/singularityhub/singularity-hpc >`_ and
335
336
provide description and links to what you have in mind. You can either specify the
336
337
module software on the command line:
@@ -348,7 +349,22 @@ or you can set the global variable to what you want to use (it defaults to lmod)
348
349
$ shpc config set module_sys:tcl
349
350
350
351
351
- The command line argument, if provided, always over-rides the default.
352
+ The command line argument, if provided, always over-rides the default. The
353
+ same works for the container technology. Here is how to install with a different
354
+ container technology, podman, either for a one-off command:
355
+
356
+ .. code-block :: console
357
+
358
+ $ shpc install --container-tech podman python
359
+
360
+
361
+ or for a global setting:
362
+
363
+ .. code-block :: console
364
+
365
+ $ shpc config set container_tech:podman
366
+
367
+
352
368
353
369
Container Technology
354
370
====================
Original file line number Diff line number Diff line change @@ -227,7 +227,7 @@ def get_parser():
227
227
default = None ,
228
228
)
229
229
command .add_argument (
230
- "--container_tech " ,
230
+ "--container-tech " ,
231
231
dest = "container_tech" ,
232
232
help = "container technology to use to override settings.yaml" ,
233
233
choices = ["singularity" , "podman" ],
You can’t perform that action at this time.
0 commit comments