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: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ OPTIONS:
21
21
22
22
**Image Format**
23
23
24
-
-`squashfs` (no arguments specified) gives you a squashfs (`*.simg`) image. This is a compressed, reliable, and read only format that is recommended for production images.
24
+
-`squashfs` (no arguments specified) gives you a squashfs (`*.simg`) image. This is a compressed, reliable, and read only format that is recommended for production images. Squashfs support was added to Singularity proper in [January of 2017](https://github.com/singularityware/singularity/commit/0cf00d1251ff276d5b9b7a0e4eadb783a45a6b65#diff-8405d9d311d83f009adff55c3deb112c) and thus available as early as the 2.2.1 release.
25
25
-`sandbox` (`-f`) builds your image into a sandbox **folder**. This is ideal for development, as it will produce a working image in a folder on your system.
26
26
-`ext3` (`-w`) builds an older format (ext3) image (`*.img`). This format is not recommended for production images as we have observed degradation of the images over time, and they tend to be upwards of 1.5x to 2x the size of squashfs.
27
27
@@ -59,7 +59,7 @@ Squashfs is the recommended image type, it is compressed and less prone to degra
59
59
docker run -v /var/run/docker.sock:/var/run/docker.sock \
60
60
-v /host/path/change/me:/output \
61
61
--privileged -t --rm \
62
-
singularityware/docker2singularity:2.4
62
+
singularityware/docker2singularity
63
63
ubuntu:14.04
64
64
65
65
Image Format: squashfs
@@ -138,7 +138,7 @@ A sandbox image is a folder that is ideal for development. You can view it on yo
138
138
docker run -v /var/run/docker.sock:/var/run/docker.sock \
139
139
-v /host/path/change/me:/output \
140
140
--privileged -t --rm \
141
-
singularityware/docker2singularity:2.4 \
141
+
singularityware/docker2singularity \
142
142
-f \
143
143
ubuntu:14.04
144
144
```
@@ -155,7 +155,7 @@ You can build a legacy ext3 image (with `--writable`) with the `-w` flag. This i
155
155
docker run -v /var/run/docker.sock:/var/run/docker.sock \
0 commit comments