From 2ec748bb8b2968eb1270e7988889d88f1d478f21 Mon Sep 17 00:00:00 2001 From: Zane Matthew Date: Sat, 6 Jan 2018 14:25:16 -0500 Subject: [PATCH] Incorrect build tag (#5677) `friendlyname` should have been named `friendlyhello` --- get-started/part2.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/get-started/part2.md b/get-started/part2.md index 79e543d216..4eaa158848 100644 --- a/get-started/part2.md +++ b/get-started/part2.md @@ -388,9 +388,9 @@ Here is a list of the basic Docker commands from this page, and some related ones if you'd like to explore a bit before moving on. ```shell -docker build -t friendlyname . # Create image using this directory's Dockerfile -docker run -p 4000:80 friendlyname # Run "friendlyname" mapping port 4000 to 80 -docker run -d -p 4000:80 friendlyname # Same thing, but in detached mode +docker build -t friendlyhello . # Create image using this directory's Dockerfile +docker run -p 4000:80 friendlyhello # Run "friendlyname" mapping port 4000 to 80 +docker run -d -p 4000:80 friendlyhello # Same thing, but in detached mode docker container ls # List all running containers docker container ls -a # List all containers, even those not running docker container stop # Gracefully stop the specified container