From 5ea28c0522044f0238277089e145351de9b61a0e Mon Sep 17 00:00:00 2001 From: GodloveD Date: Tue, 17 Mar 2020 16:52:57 -0400 Subject: [PATCH] few touch ups --- 03-the-ecosystem/README.md | 6 +++--- 04-bind-mounts/README.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/03-the-ecosystem/README.md b/03-the-ecosystem/README.md index 58dba2e..5fe5a00 100644 --- a/03-the-ecosystem/README.md +++ b/03-the-ecosystem/README.md @@ -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 @@ -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. diff --git a/04-bind-mounts/README.md b/04-bind-mounts/README.md index dfb3de5..5c10b69 100644 --- a/04-bind-mounts/README.md +++ b/04-bind-mounts/README.md @@ -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 ```