You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The containerd website is built using Jekyll and published to Github pages.
3
+
The containerd website at https://containerd.iois built using [Hugo](https://gohugo.io) and published to [Netlify](https://netlify.com).
4
4
5
-
In order to build and test locally:
6
-
```
7
-
docker run -it -v "$PWD":/usr/src/app -p "4000:4000" starefossen/github-pages
5
+
To develop the site locally in "watch" mode (using Docker):
*[Dec 2017: The New Stack: Containerd 1.0 Release Becomes the Public Face of Containers](https://thenewstack.io/containerd-1-0-release/)
*[March 2017: Docker to donate containerd to the Cloud Native Computing Foundation](https://blog.docker.com/2017/03/docker-donates-containerd-to-cncf/)
@@ -23,28 +15,21 @@ containerd includes a daemon exposing gRPC API over a local UNIX socket. The API
23
15
24
16
containerd is based on the Docker Engine’s core container runtime to benefit from its maturity and existing contributors.
25
17
26
-

27
-
18
+

28
19
29
20
## Features and roadmap
30
21
31
-
* OCI Image Spec support
32
-
* OCI Runtime Spec support (aka runC)
33
-
* Image push and pull support
34
-
* Container runtime and lifecycle support
35
-
* Network primitives for creation, modification, and deletion of interfaces
36
-
* Management of network namespaces containers to join existing namespaces
37
-
* Multi-tenant supported with CAS storage for global images
22
+
{{< features >}}
38
23
39
24
containerd, currently in [version 1.0.1](https://github.com/containerd/containerd/releases/tag/v1.0.1), is a daemon born from extracting the container execution subset of the Docker Engine, and is [used internally by Docker since the 1.11 release](https://blog.docker.com/2016/04/docker-engine-1-11-runc/). containerd versions prior to v1.0.x were used in Docker 17.10 and earlier (see Docker [version release notes](https://github.com/docker/docker-ce/releases)), and [Docker 17.12](https://github.com/docker/docker-ce/releases/tag/v17.12.0-ce) is the first release to use containerd v1.0.0.
40
25
41
26
The containerd maintainers do not provide a consolidated [containerd roadmap](https://github.com/containerd/containerd/blob/master/ROADMAP.md), but have chosen to use issues and milestones to track and implement major and minor features.
42
27
43
28
## Architecture
44
29
45
-
Containerd [architecture](https://github.com/containerd/containerd/blob/master/design/architecture.md) and [API](https://github.com/containerd/containerd/tree/master/api/) are described in the Github repository.
30
+
Containerd [architecture](https://github.com/containerd/containerd/blob/master/design/architecture.md) and [API](https://github.com/containerd/containerd/tree/master/api/) are described in the GitHub repository.
46
31
47
-

32
+

48
33
49
34
## Principles and Releases
50
35
@@ -93,34 +78,34 @@ Each major version will be supported for 1 year with bug fixes and security patc
93
78
Docker is a complete platform and programming environment for containerized applications. containerd is one of dozens of specialized components integrated into Docker. Developers and IT professionals looking to build, ship and run containerized applications should continue to use Docker. Operators and integrators looking for specialized components to swap into their platform should consider containerd.
94
79
95
80
96
-

81
+

97
82
98
83
containerd 0.2.4 used in Docker 1.12 covers only container execution and process management.
99
84
100
-

85
+

101
86
102
87
containerd's roadmap is to refactor the Docker Engine codebase to extract more of its logic for distribution, networking and storage on a single host into a reusable component that Docker will use, and that can be used by other container orchestration projects or hosted container services.
103
88
104
-

89
+

105
90
106
91
2. What is the relationship between containerd, OCI and runc?
107
92
108
-
Docker [donated the OCI specification to the Linux Foundation in 2015](https://blog.docker.com/2015/06/open-container-project-foundation/), along with a reference implementation called `runc`. containerd integrates [OCI](https://www.opencontainers.org/)/[runc](https://runc.io/) into a feature-complete, production-ready core container runtime. runc is a component of containerd, the executor for containers. containerd has a wider scope than just executing containers: downloading container images, managing storage and network interfaces, calling runc with the right parameters to run containers. containerd fully leverages the Open Container Initiative’s (OCI) runtime, image format specifications and OCI reference implementation (runc) and will pursue OCI certification when it is available. Because of its massive adoption, containerd is the industry standard for implementing OCI.
93
+
Docker [donated the OCI specification to the Linux Foundation in 2015](https://blog.docker.com/2015/06/open-container-project-foundation/), along with a reference implementation called `runc`. containerd integrates [OCI](https://www.opencontainers.org/)/[runc](https://runc.io/) into a feature-complete, production-ready core container runtime. runc is a component of containerd, the executor for containers. containerd has a wider scope than just executing containers: downloading container images, managing storage and network interfaces, calling runc with the right parameters to run containers. containerd fully leverages the Open Container Initiative’s (OCI) runtime, image format specifications and OCI reference implementation (runc) and will pursue OCI certification when it is available. Because of its massive adoption, containerd is the industry standard for implementing OCI.
109
94
110
-

95
+

111
96
112
97
3. What is the relationship between containerd and container orchestration systems like Kubernetes and Mesos?
113
98
114
99
Kubernetes today uses Docker directly. In a future version Kubernetes can implement container support in the Kubelet by implementing it's [Container Runtime Interface](https://github.com/kubernetes/kubernetes/blob/release-1.5/docs/devel/container-runtime-interface.md) using containerd. Mesos and other orchestration engines can leverage containerd for core container runtime functionality as well.
115
100
116
-

101
+

117
102
118
103
4. What is the relationship between containerd and cloud managed container services?
119
104
120
105
See answer above: cloud managed container services can leverage containerd instead of Docker in order to provide container functionalities to their users.
121
106
122
107
## CNCF
123
108
124
-

109
+

125
110
126
111
We are a Cloud Native Computing Foundation member project.
0 commit comments