|
...
|
...
|
@@ -7,7 +7,7 @@
|
|
7
|
7
|
<head>
|
|
8
|
8
|
<meta charset="utf-8">
|
|
9
|
9
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
10
|
|
- <title>Docker - the Linux container runtime</title>
|
|
|
10
|
+ <title>Docker - the Linux container engine</title>
|
|
11
|
11
|
|
|
12
|
12
|
<meta name="description" content="Docker encapsulates heterogeneous payloads in standard containers">
|
|
13
|
13
|
<meta name="viewport" content="width=device-width">
|
|
...
|
...
|
@@ -71,18 +71,28 @@
|
|
71
|
71
|
|
|
72
|
72
|
<div style="text-align: center; padding: 50px 30px 50px 30px;">
|
|
73
|
73
|
<h1>Docker</h1>
|
|
74
|
|
- <h2>The Linux container runtime</h2>
|
|
|
74
|
+ <h2>The Linux container engine</h2>
|
|
75
|
75
|
</div>
|
|
76
|
76
|
|
|
77
|
77
|
<div style="display: block; text-align: center; padding: 10px 30px 50px 30px;">
|
|
78
|
|
- <p>
|
|
79
|
|
- Docker complements LXC with a high-level API which operates at the process level.
|
|
80
|
|
- It runs unix processes with strong guarantees of isolation and repeatability across servers.
|
|
81
|
|
- </p>
|
|
82
|
|
-
|
|
83
|
|
- <p>
|
|
84
|
|
- Docker is a great building block for automating distributed systems: large-scale web deployments, database clusters, continuous deployment systems, private PaaS, service-oriented architectures, etc.
|
|
85
|
|
- </p>
|
|
|
78
|
+
|
|
|
79
|
+ <p>
|
|
|
80
|
+ Docker is an open-source engine which automates the deployment of applications as highly portable, self-sufficient containers.
|
|
|
81
|
+ </p>
|
|
|
82
|
+
|
|
|
83
|
+ <p>
|
|
|
84
|
+ Docker containers are both <string>hardware-agnostic</strong> and <strong>platform-agnostic</strong>. This means that they can run anywhere, from your
|
|
|
85
|
+ laptop to the largest EC2 compute instance and everything in between - and they don't require that you use a particular
|
|
|
86
|
+ language, framework or packaging system. That makes them great building blocks for deploying and scaling web apps, databases
|
|
|
87
|
+ and backend services without depending on a particular stack or provider.
|
|
|
88
|
+ </p>
|
|
|
89
|
+
|
|
|
90
|
+ <p>
|
|
|
91
|
+ Docker is an open-source implementation of the deployment engine which powers <a href="http://dotcloud.com">dotCloud</a>, a popular Platform-as-a-Service.
|
|
|
92
|
+ It benefits directly from the experience accumulated over several years of large-scale operation and support of hundreds of thousands
|
|
|
93
|
+ of applications and databases.
|
|
|
94
|
+ </p>
|
|
|
95
|
+
|
|
86
|
96
|
</div>
|
|
87
|
97
|
|
|
88
|
98
|
|