Skip to content

Commit 02ad2f4

Browse files
committed
fixing bug with spelling, etc.
1 parent 0bc3bec commit 02ad2f4

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

_posts/releases/2017-10-02-release-2.4.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Singularity now has support for instances, which means services! Images instance
2929
If you want to host your own Registry, we listened and you are in luck! Singularity <a href="https://www.github.com/singularityhub/sregistry">Registry</a> is ready for your use, along with a <a href="https://singularityhub.github.io/containers">portal</a> for you to "register your registry" to make it easier to share your images. Singularity Hub, along with improved building and updated builders, will follow this release.
3030

3131
**Internal Modularity**
32-
This release includes support for the <a href="/docs-apps">Standard Container Integration Format (SCI-F)</a> that makes it easy for you to produce single, internally modular and programmatically discoverage containers. More information is provided on it's <a href="https://containers-ftw.github.io/SCI-F/">main site</a>.
32+
This release includes support for the <a href="/docs-apps">Standard Container Integration Format (SCI-F)</a> that makes it easy for you to produce single, internally modular and programmatically discoverable containers. More information is provided on it's <a href="https://containers-ftw.github.io/SCI-F/">main site</a>.
3333

3434
**Better Documentation**
3535
We've added an entire page on the different customizations you can do to the [build environment](/build-environment), including changing the cache and specifying credentials for Docker. We now also have new sidebars for the Image and Instances command groups.

pages/docs/user-docs/image-export.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@ Export is a way to dump the contents of your container into a .tar.gz, or a stre
1111
Here we export an image into a `.tar` file:
1212

1313
```
14-
singularity export container.img > container.tar
14+
singularity image.export container.img > container.tar
1515
```
1616

1717
We can also specify the file with `--file`
1818

1919
```
20-
singularity export --file container.tar container.img
20+
singularity image.export --file container.tar container.img
2121
```
2222

2323
And here is the recommended way to compress your image:
2424

2525
```
26-
singularity export container.img | gzip -9 > container.img.gz
26+
singularity image.export container.img | gzip -9 > container.img.gz
2727
```

0 commit comments

Comments
 (0)