From 992fdbfd762907247c337817056fb2df4c1de90d Mon Sep 17 00:00:00 2001 From: Michael Crosby Date: Mon, 7 Nov 2016 11:54:35 -0800 Subject: [PATCH] Updates to Root comment Signed-off-by: Michael Crosby --- README.md | 10 ++++++++++ container.go | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1d86b4a..7f1a22c 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,10 @@ containerkit will come with a default implementation for the various components. These defaults will be chosen my the maintainers of the project and should not change unless better tech for that component comes out. Additional implementations will not be accepted into the core repository and should be developed in a separate repository not maintained by the containerkit maintainers. +### Stability + + + ### Scope The following table specifies the various components of containerkit and general features of container runtimes. @@ -54,6 +58,12 @@ It can be used to builds things like a node agent that launches containers but d Also things like service discovery are out of scope even though networking is in scope. containerkit should provide the primitives to create, add, remove, or manage network interfaces for a container but ip allocation, discovery, and DNS should be handled at higher layers. +### How is the scope changed? + +The scope of this project is a whitelist. +If its not mentioned as being in scope, it is out of scope. +For the scope of this project to change it requires a 100% vote from all maintainers of the project. + ## Copyright and license Copyright © 2016 Docker, Inc. All rights reserved, except as follows. Code diff --git a/container.go b/container.go index efafa6e..7f3e402 100644 --- a/container.go +++ b/container.go @@ -12,7 +12,7 @@ import ( type ContainerConfig interface { ID() string - Root() string + Root() string // bundle path Spec() (*specs.Spec, error) Runtime() (Runtime, error) }