You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: stimela/__init__.py
+32-12Lines changed: 32 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@
13
13
fromstimela.cargoimportcab
14
14
fromstimela.recipeimportRecipeasPipeline
15
15
fromstimela.recipeimportRecipe, PipelineException
16
-
fromstimelaimportdocker, singularity
16
+
fromstimelaimportdocker, singularity, udocker
17
17
importpkg_resources
18
18
importwarnings
19
19
@@ -317,10 +317,25 @@ def pull(argv):
317
317
help="Tag")
318
318
319
319
add("-s", "--singularity", action="store_true",
320
-
help="Use singularity instead of docker."
320
+
help="Pull base images using singularity."
321
321
"Images will be pulled into the directory specified by the enviroment varaible, SINGULARITY_PULLFOLDER. $PWD by default")
322
322
323
+
add("-d", "--docker", action="store_true",
324
+
help="Pull base images using docker.")
325
+
326
+
add("-pf", "--pull-folder", help="Images will be placed in this folder. Else, if the environmnental variable 'SINGULARITY_PULLFOLDER' is set, then images will be placed there. "
327
+
"Else, images will be placed in the current directory")
0 commit comments