We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17cf023 commit 7328c89Copy full SHA for 7328c89
1 file changed
docker2singularity.sh
@@ -44,10 +44,12 @@ if [ $# == 0 ] ; then
44
echo "OPTIONS:
45
46
Image Format
47
- -f: build development sandbox (folder)
48
- -w: non-production writable image (ext3)
49
- Default is squashfs (recommended)
50
- -n: provide basename for the container (default based on URI)
+ --folder -f build development sandbox (folder)
+ --writable -w non-production writable image (ext3)
+ Default is squashfs (recommended)
+ --name -n provide basename for the container (default based on URI)
51
+ --mount -m provide list of custom mount points (in quotes!)
52
+ --help -h show this help and exit
53
"
54
55
exit 1;
@@ -78,7 +80,7 @@ while true; do
78
80
image_format="sandbox"
79
81
shift
82
;;
- -s|--sandbox)
83
+ -w|--wrtiable)
84
85
image_format="writable"
86
0 commit comments