From a89ad87b7e5d4d247a1eb315bfbc9c1f8114efae Mon Sep 17 00:00:00 2001 From: John Mulhausen Date: Thu, 19 Jan 2017 14:32:24 -0800 Subject: [PATCH] Simplify front page --- index.md | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/index.md b/index.md index 3d03574e0d..06cd5ba528 100644 --- a/index.md +++ b/index.md @@ -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"} + +
+{% 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 }} + +{% 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 }} +
{% include content/typical_docker_workflow.md %}