Skip to content

Commit bf50934

Browse files
committed
Merge branch 'master' of github.com:singularityware/singularityware.github.io
2 parents 1053672 + 89d61a9 commit bf50934

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

pages/docs/user-docs/docs-checks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ folder: docs
66
toc: false
77
---
88

9-
New to Singularity 2.4 is the ability to run container "checks" on demand. Checks can be anything from a filter for sensitive information, to an analysis installed binaries. A few defualt checks are installed with Singularity and others can be [added by the administrater](/docs-admin-checks). Users can perform checks at build time or on demand:
9+
New to Singularity 2.4 is the ability to run container "checks" on demand. Checks can be anything from a filter for sensitive information, to an analysis of installed binaries. A few default checks are installed with Singularity and others can be [added by the administrator](/docs-admin-checks). Users can perform checks at build time or on demand:
1010

1111
{% include toc.html %}
1212

pages/docs/user-docs/docs-flow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The diagram below is a visual depiction of how you can use Singularity to build
2626
<img style="max-width:900px" src="/assets/img/diagram/singularity-2.4-flow.png">
2727
</a>
2828

29-
Singularity production images are immutable. This is a feature added as of Singularity 2.4, and it ensures a higher level of reproducibility and verification of images. To read more about the details, check out the [build](docs-build-container) docs. However, immutability is not so great when you are testing, debugging, or otherwise want to quickly change your image. We will proceed by describing a typical workflow of developing first, building a final image, and using in production.
29+
Singularity production images are immutable. This is a feature added as of Singularity 2.4, and it ensures a higher level of reproducibility and verification of images. To read more about the details, check out the [build](docs-build-container) docs. However, immutability is not so great when you are testing, debugging, or otherwise want to quickly change your image. We will proceed by describing a typical workflow of developing first, building a final image, and using it in production.
3030

3131
### 1. Development Commands
3232
If you want a writable image or folder for developing, you have two options:

pages/docs/user-docs/docs-instances.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ folder: docs
66
toc: false
77
---
88

9-
Singularity 2.4 introduces the ability to run "container instances", allowing you to run services (*e.g. Nginx, MySQL, etc...*) using Singularity. A container instance, simply put, is a persistant and isolated version of the container image that runs in the background.
9+
Singularity 2.4 introduces the ability to run "container instances", allowing you to run services (*e.g. Nginx, MySQL, etc...*) using Singularity. A container instance, simply put, is a persistent and isolated version of the container image that runs in the background.
1010

1111
{% include toc.html %}
1212

@@ -22,7 +22,7 @@ With older versions of Singularity, if you were to do something like this, from
2222

2323
Orphan process within unreachable namespaces!
2424

25-
You would lose control of the process. It would still be running, but you couldn't easily kill or interface with it. This is a called a orphan process. Singularity versions less than 2.4 were not designed to handle running services properly.
25+
You would lose control of the process. It would still be running, but you couldn't easily kill or interface with it. This is a called an orphan process. Singularity versions less than 2.4 were not designed to handle running services properly.
2626

2727
## Container Instances in Singularity
2828
With Singularity 2.4 and the addition of container instances, the ability to cleanly, reliably, and safely run services in a container is here. First, let's put some commands that we want our instance to execute into a script. Let's call it a `startscript`. This fits into a definition file like so:

0 commit comments

Comments
 (0)