Skip to content

Commit 5ea28c0

Browse files
committed
few touch ups
1 parent fa39fe4 commit 5ea28c0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Diff for: 03-the-ecosystem/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,9 @@ The last point is particularly important and can be accomplished in a few differ
9090

9191
### Docker Hub Official and Certified images
9292

93-
The Docker team works with upstream maintainers (like Canonical, CentOS, etc.) to create **Official** images. They've been reviewed by humans, scanned for vulnerabilities, and approved. You can find more details [here](https://docs.docker.com/docker-hub/official_images/)
93+
The Docker team works with upstream maintainers (like Canonical, CentOS, etc.) to create [**Official** images](https://docs.docker.com/docker-hub/official_images/). They've been reviewed by humans, scanned for vulnerabilities, and approved.
9494

95-
There are a series of steps that upstream maintainers can perform to produce **Certified** images. This includes a standard of best practices and some baseline testing. You can find more details [here](https://docs.docker.com/docker-hub/publish/certify-images/)
95+
There are a series of steps that upstream maintainers can perform to produce [**Certified** images](https://docs.docker.com/docker-hub/publish/certify-images/). This includes a standard of best practices and some baseline testing.
9696

9797
### Signing and verifying Singularity images
9898

@@ -102,7 +102,7 @@ This model also differs from the Docker model of trust because the decision of w
102102

103103
## Building and hosting your containers
104104

105-
Docker Hub allows you to save a Docker File (Docker's version of a Singularity definition file) to a GitHub repo and then link that repo to a Docker Hub repo. Every time a new commit is pushed to the GitHub repo, a new container will be build on Docker Hub.
105+
Docker Hub allows you to save a Docker File (Docker's version of a Singularity definition file) to a GitHub repo and then link that repo to a Docker Hub repo. Every time a new commit is pushed to the GitHub repo, a new container will be built on Docker Hub.
106106

107107
For instance, the [godlovedc/lolcow](https://hub.docker.com/repository/docker/godlovedc/lolcow) container is linked to the [GodloveD/lolcow](https://github.com/GodloveD/lolcow/blob/master/Dockerfile) repo on GitHub.
108108

Diff for: 04-bind-mounts/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ $ echo 'I am your father' > /data/vader.txt
4444
Now let's see how bind mounts work. First, let's list the contents of `/data` within the container without bind mounting `/data` on the host system to it.
4545

4646
```
47-
$ $ singularity exec lolcow.sif ls -l /data
47+
$ singularity exec lolcow.sif ls -l /data
4848
ls: cannot access '/data': No such file or directory
4949
```
5050

0 commit comments

Comments
 (0)