Merge pull request #8578 from yoyoyoju/patch-1

typo fix
This commit is contained in:
Maria Bermudez
2019-04-03 21:48:29 -04:00
committed by GitHub

View File

@@ -418,7 +418,7 @@ ones if you'd like to explore a bit before moving on.
```shell
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 -p 4000:80 friendlyhello # Run "friendlyhello" 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