diff --git a/BUILDING.md b/BUILDING.md index d36ef0b0a..88c3fab2e 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -175,7 +175,7 @@ RUN apt-get update && \ ``` -In our Docker container we will use a specific `runc` build which includes [seccomp](https://en.wikipedia.org/wiki/seccomp) and [apparmor](https://en.wikipedia.org/wiki/AppArmor) support. Hence why our Dockerfile includes `libseccomp-dev` as a dependency (apparmor support doesn't require external libaries). Please refer to [RUNC.md](/RUNC.md) for the currently supported version of `runc` that is used by containerd. +In our Docker container we will use a specific `runc` build which includes [seccomp](https://en.wikipedia.org/wiki/seccomp) and [apparmor](https://en.wikipedia.org/wiki/AppArmor) support. Hence why our Dockerfile includes `libseccomp-dev` as a dependency (apparmor support doesn't require external libraries). Please refer to [RUNC.md](/RUNC.md) for the currently supported version of `runc` that is used by containerd. Let's suppose you build an image called `containerd/build` from the above Dockerfile. You can run the following command: diff --git a/reports/2017-04-28.md b/reports/2017-04-28.md index b8903d212..b8dae136e 100644 --- a/reports/2017-04-28.md +++ b/reports/2017-04-28.md @@ -4,7 +4,7 @@ Sorry for the slow reports lately. Last week was Dockercon and many people insi ## New Projects to the Org. -We are looking to move some of our dependencies used by containerd into the org. We want to have a simple maintainer model for containerd and any other repository that is added to the org. Bascially, if you are a maintainer of containerd, you are a maintainer on all of the repos. We don't want to have separate maintainers for the various parts as we should all share the responsibility for quality and stability for the project as a whole. +We are looking to move some of our dependencies used by containerd into the org. We want to have a simple maintainer model for containerd and any other repository that is added to the org. Basically, if you are a maintainer of containerd, you are a maintainer on all of the repos. We don't want to have separate maintainers for the various parts as we should all share the responsibility for quality and stability for the project as a whole. We have an issue on github discussing the various projects that we want to add. If you have any feedback please let us know on the issue below. diff --git a/reports/2017-05-26.md b/reports/2017-05-26.md index 65b5a4685..8947310b1 100644 --- a/reports/2017-05-26.md +++ b/reports/2017-05-26.md @@ -79,7 +79,7 @@ if err != nil { ### Create a new container based on the image ```go -// create the container with a persistant ReadWrite layer based on the image and spec +// create the container with a persistent ReadWrite layer based on the image and spec container, err := client.NewContainer(ctx, "redis", spec, containerd.WithNewRootFS("redis-rootfs", image)) if err != nil { return err