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
-`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.
34
+
-`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/sylabs/singularity/commit/0cf00d1251ff276d5b9b7a0e4eadb783a45a6b65#diff-8405d9d311d83f009adff55c3deb112c) and thus available as early as the 2.2.1 release.
35
35
-`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.
36
36
-`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.
37
37
@@ -50,12 +50,18 @@ The last argument (without a letter) is the name of the docker image, as you wou
50
50
51
51
If you want a legacy version, see the following other branches:
52
52
53
-
-[v2.3](https://github.com/singularityware/docker2singularity/tree/v2.3): Version 2.3 of Singularity. The image format is ext3.
54
-
-[v2.4](https://github.com/singularityware/docker2singularity/tree/v2.4): Version 2.4 of Singularity. The default image format is squashfs.
55
-
-[v2.5](https://github.com/singularityware/docker2singularity/tree/v2.5): Version 2.5.1 of Singularity. Same as 2.4 but with many bug fixes.
56
-
-[v2.6](https://github.com/singularityware/docker2singularity/tree/v2.6): Version 2.6 of Singularity.
53
+
-[v3.4.0](https://github.com/singularityhub/docker2singularity/tree/v3.3.0): Version 3.4.0 of Singularity.
54
+
-[v3.3.0](https://github.com/singularityhub/docker2singularity/tree/v3.3.0): Version 3.3.0 of Singularity.
55
+
-[v3.2.1](https://github.com/singularityhub/docker2singularity/tree/v3.2.1): Version 3.2.1 of Singularity.
56
+
-[v3.1](https://github.com/singularityhub/docker2singularity/tree/v3.1): Version 3.1 of Singularity.
57
+
-[v2.6](https://github.com/singularityhub/docker2singularity/tree/v2.6): Version 2.6 of Singularity.
58
+
-[v2.5](https://github.com/singularityhub/docker2singularity/tree/v2.5): Version 2.5.1 of Singularity. Same as 2.4 but
59
+
-[v2.4](https://github.com/singularityhub/docker2singularity/tree/v2.4): Version 2.4 of Singularity. The default image format is squashfs.
60
+
-[v2.3](https://github.com/singularityhub/docker2singularity/tree/v2.3): Version 2.3 of Singularity. The image format is ext3.
61
+
with many bug fixes.
57
62
58
-
Intermediate versions built on [Docker Hub](https://hub.docker.com/r/singularityware/docker2singularity/tags/). A tag with prefix `v` corresponds to a release of the Singularity software, while the others are in reference to releases of Docker. Previously used [scripts](https://github.com/singularityware/docker2singularity/tree/master/scripts), including environment and action files, are provided in this repository for reference.
63
+
Containers were previous built on [Docker Hub](https://hub.docker.com/r/singularityware/docker2singularity/tags/) and
64
+
now are provided on [quay.io](https://quay.io/repository/singularity/docker2singularity?tab=tags). A tag with prefix `v` corresponds to a release of the Singularity software, while the others are in reference to releases of Docker. Previously used [scripts](https://github.com/singularityhub/docker2singularity/tree/master/scripts), including environment and action files, are provided in this repository for reference.
59
65
60
66
## Requirements
61
67
@@ -80,7 +86,7 @@ And here is the command to run. Notice that I am mounting the path `/tmp/test` t
80
86
$ docker run -v /var/run/docker.sock:/var/run/docker.sock \
81
87
-v /tmp/test:/output \
82
88
--privileged -t --rm \
83
-
singularityware/docker2singularity \
89
+
quay.io/singularity/docker2singularity \
84
90
ubuntu:14.04
85
91
86
92
Image Format: squashfs
@@ -144,7 +150,7 @@ Added for version 2.5.1, you can specify the name of your container with the `-n
144
150
docker run -v /var/run/docker.sock:/var/run/docker.sock \
145
151
-v /tmp/test:/output \
146
152
--privileged -t --rm \
147
-
singularityware/docker2singularity \
153
+
quay.io/singularity/docker2singularity \
148
154
--name meatballs ubuntu:14.04
149
155
150
156
...
@@ -193,7 +199,7 @@ A sandbox image is a folder that is ideal for development. You can view it on yo
193
199
docker run -v /var/run/docker.sock:/var/run/docker.sock \
194
200
-v /host/path/change/me:/output \
195
201
--privileged -t --rm \
196
-
singularityware/docker2singularity \
202
+
quay.io/singularity/docker2singularity \
197
203
-f \
198
204
ubuntu:14.04
199
205
```
@@ -210,7 +216,7 @@ You can build a legacy ext3 image (with `--writable`) with the `-w` flag. This i
210
216
docker run -v /var/run/docker.sock:/var/run/docker.sock \
The following are a list of brief examples and tutorials generated by the Singularity community for using **docker2singularity**. If you have an example of your own, please [let us know](https://www.github.com/singularityware/docker2singularity/issues)!
231
+
The following are a list of brief examples and tutorials generated by the Singularity community for using **docker2singularity**. If you have an example of your own, please [let us know](https://www.github.com/singularityhub/docker2singularity/issues)!
226
232
227
233
-[docker2singularity-demo](https://github.com/stevekm/docker2singularity-demo): an example of using docker2singularity on MacOS and using Vagrant to test the output Singularity image, complete with notes and a nice Makefile.
228
234
@@ -267,7 +273,7 @@ If you are getting `WARNING: Non existant bind point (directory) in container: '
0 commit comments