From 960cbd2c8dd7dfa794c11087babed46bea5d792e Mon Sep 17 00:00:00 2001 From: Mary Anthony Date: Tue, 23 Jun 2015 05:17:20 -0700 Subject: [PATCH] Fixes #14117 Signed-off-by: Mary Anthony --- docs/introduction/understanding-docker.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/introduction/understanding-docker.md b/docs/introduction/understanding-docker.md index 1b2fe94048..9c872efbea 100644 --- a/docs/introduction/understanding-docker.md +++ b/docs/introduction/understanding-docker.md @@ -123,14 +123,14 @@ images for your use. These can be images you create yourself or you can use images that others have previously created. Docker registries are the **distribution** component of Docker. -####Docker containers +#### Docker containers Docker containers are similar to a directory. A Docker container holds everything that is needed for an application to run. Each container is created from a Docker image. Docker containers can be run, started, stopped, moved, and deleted. Each container is an isolated and secure application platform. Docker containers are the **run** component of Docker. -##So how does Docker work? +## So how does Docker work? So far, we've learned that: 1. You can build Docker images that hold your applications.