Update docker_elevator_pitch.md

This commit is contained in:
John Mulhausen 2016-10-04 00:55:23 -07:00 committed by GitHub
parent 8fc96d838f
commit f759b96301
1 changed files with 10 additions and 7 deletions

View File

@ -1,7 +1,10 @@
At its core, Docker provides a way to run almost any application securely
isolated in a container. The isolation and security allow you to run many
containers simultaneously on your host. The lightweight nature of containers,
which run without the extra load of a hypervisor, means you can get more out of
your hardware. Additionally, your application can always be packaged with its
dependencies and environment variables right in the build image, making testing
and deployment simpler than ever.
Docker provides a way to run applications securely isolated in a container, packaged
with all its dependencies and libraries. Because your application can always be
run with the environment it expects right in the build image, testing
and deployment is simpler than ever, as your build will be fully portable and ready
to run as designed in any environment. And because containers are lightweight and run
without the extra load of a hypervisor, you can run many applications that all rely
on different libraries and environments on a single kernel, each one never interfering
with the other. This allows you to get more out of your hardware by shifting the "unit
of scale" for your application from a virtual or physical machine, to a container
instance.