Skip to content

Commit 4d0940d

Browse files
committed
addressing issues found by v
1 parent ada852b commit 4d0940d

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

pages/docs/user-docs/action-build.md

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

9-
`build` is the "Swiss army knife" of container creation. You can use it to download and assemble pre-built containers from external resources like [Singularity Hub](https://singularity-hub.org/) and [Docker Hub](https://hub.docker.com/). You can use it to convert containers between the various formats supported by Singularity. And you can use it in conjunction with a [Singularity Recipe](/docs-recipes) file to create a container from scratch and customized it to fit your needs.
9+
`build` is the "Swiss army knife" of container creation. You can use it to download and assemble existing containers from external resources like [Singularity Hub](https://singularity-hub.org/) and [Docker Hub](https://hub.docker.com/). You can use it to convert containers between the various formats supported by Singularity. And you can use it in conjunction with a [Singularity Recipe](/docs-recipes) file to create a container from scratch and customized it to fit your needs.
1010

1111
{% include toc.html %}
1212

@@ -32,7 +32,7 @@ Because `build` can accept an existing container as a target and create a contai
3232

3333
Some things need root...
3434

35-
## Downloading a pre-built container from Singularity Hub
35+
## Downloading a existing container from Singularity Hub
3636
You can use the `build` command to download a container from Singularity Hub.
3737

3838
```
@@ -43,7 +43,7 @@ The first argument (`lolcow.simg`) specifies a path and name for your container.
4343

4444
But default the container will be converted to a compressed, read-only squashfs file. If you want your container in a different format use the `--writable` or `--sandbox` options.
4545

46-
## Downloading a pre-built container from Docker Hub
46+
## Downloading a existing container from Docker Hub
4747
You can use `build` to download layers from Docker Hub and assemble them into Singularity containers.
4848

4949
```

pages/docs/user-docs/docs-environment-metadata.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Singularity containers support environment variables and labels that you can add
1212

1313
## Environment
1414

15-
If you build a container from Singularity Hub or Docker Hub, the environment will be imported into the container at build time. You can also define custom environment variables in your Recipe file like so:
15+
If you build a container from Singularity Hub or Docker Hub, the environment will be included with the container at build time. You can also define custom environment variables in your Recipe file like so:
1616

1717
```
1818
Bootstrap: shub
@@ -23,7 +23,7 @@ From: singularityhub/ubuntu
2323
export VARIABLE_NAME
2424
```
2525

26-
You may need to add environment variables to your container during the `$post` section. For instance, maybe you will not know the appropriate value of a variable until you have installed some software.
26+
You may need to add environment variables to your container during the `%post` section. For instance, maybe you will not know the appropriate value of a variable until you have installed some software.
2727

2828
To add variables to the environment during `%post` you can use the `$SINGULARITY_ENVIRONMENT` variable with the following syntax:
2929

pages/docs/user-docs/docs-recipes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Please see the [examples](https://github.com/singularityware/singularity/tree/ma
2222
### Header
2323
The header is at the top of the file, and tells Singularity the base Operating System that it should use to build the container. It is composed of several keywords. Specifically:
2424

25-
- `Bootstrap:` references the kind of base you want to use (e.g., docker, debootstrap, shub). For example, a shub bootstrap will pull containers for shub as bases. A Docker bootstrap will pull docker layers to start your image. For a full list see <a href="/build">build</a>
25+
- `Bootstrap:` references the kind of base you want to use (e.g., docker, debootstrap, shub). For example, a shub bootstrap will pull containers for shub as bases. A Docker bootstrap will pull docker layers to start your image. For a full list see [build](docs-build)
2626
- `From:` is the named container (shub) or reference to layers (Docker) that you want to use (e.g., vsoch/hello-world)
2727

2828
Depending on the value assigned to `Bootstrap:`, other keywords may also be valid in the header.
@@ -45,7 +45,7 @@ Include: yum
4545

4646
Each build base requires particular details during build time. You can read about them and see examples at the following links:
4747

48-
- [shub](/build-docker) (images hosted on Singularity Hub)
48+
- [shub](/build-shub) (images hosted on Singularity Hub)
4949
- [docker](/build-docker) (images hosted on Docker Hub)
5050
- [localimage](/build-localimage) (images saved on your machine)
5151
- [self](/build-self) (a snapshot of your build system)

0 commit comments

Comments
 (0)