Simplify front page

This commit is contained in:
John Mulhausen 2017-01-19 14:32:24 -08:00 committed by Misty Stanley-Jones
parent 2c302845e1
commit a89ad87b7e
1 changed files with 25 additions and 1 deletions

View File

@ -5,7 +5,31 @@ layout: docs
title: Docker Documentation
---
{% include content/docker_elevator_pitch.md %}
Docker packages your app with its dependencies, freeing you from worrying about your
system configuration, and making your app more portable.
[Get Docker](/engine/installation/){: class="button darkblue-btn"}
<table><tr><td width="50%">
{% capture basics %}
## Learn the basics of Docker
The basic tutorial teaches you about how to build, push, and pull images, and
run them as containers. This tutorial stops short of teaching you how to deploy
applications.
[Start the basic tutorial](/engine/getstarted/){: class="button darkblue-btn"}
{% endcapture %}{{ basics | markdownify }}
</td><td width="50%">
{% capture apps %}
## Define and deploy applications
The application tutorial teaches you how to relate containers to each other and
define them as part of an application that is ready to deploy at scale.
[Start the application tutorial](/engine/getstarted-voting-app/){: class="button darkblue-btn"}
{% endcapture %}{{ apps | markdownify }}
</td></tr></table>
{% include content/typical_docker_workflow.md %}