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