Skip to content

Commit

Permalink
few touch ups
Browse files Browse the repository at this point in the history
  • Loading branch information
GodloveD committed Mar 17, 2020
1 parent fa39fe4 commit 5ea28c0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions 03-the-ecosystem/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@ The last point is particularly important and can be accomplished in a few differ

### Docker Hub Official and Certified images

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/)
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.

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/)
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.

### Signing and verifying Singularity images

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

## Building and hosting your containers

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.
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.

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.

Expand Down
2 changes: 1 addition & 1 deletion 04-bind-mounts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ $ echo 'I am your father' > /data/vader.txt
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.

```
$ $ singularity exec lolcow.sif ls -l /data
$ singularity exec lolcow.sif ls -l /data
ls: cannot access '/data': No such file or directory
```

Expand Down

0 comments on commit 5ea28c0

Please sign in to comment.