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 Docker provides a way to run applications securely isolated in a container, packaged
isolated in a container. The isolation and security allow you to run many with all its dependencies and libraries. Because your application can always be
containers simultaneously on your host. The lightweight nature of containers, run with the environment it expects right in the build image, testing
which run without the extra load of a hypervisor, means you can get more out of and deployment is simpler than ever, as your build will be fully portable and ready
your hardware. Additionally, your application can always be packaged with its to run as designed in any environment. And because containers are lightweight and run
dependencies and environment variables right in the build image, making testing without the extra load of a hypervisor, you can run many applications that all rely
and deployment simpler than ever. 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.